Looks as if some required features are missing from the rchain/rnode. Using the instruction against the source code rholang/exmaples I could only get a successful run for:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package coop.rchain.service | |
| import coop.rchain.domain.{Err, ErrorCode, DeployAndProposeResponse} | |
| import coop.rchain.repo.RholangProxy | |
| import coop.rchain.utils.Globals._ | |
| import scala.util.{Failure, Success, Try} | |
| object RholangContractProxy { |
Copyright © 2016-2017 Fantasyland Institute of Learning. All rights reserved.
A function is a mapping from one set, called a domain, to another set, called the codomain. A function associates every element in the domain with exactly one element in the codomain. In Scala, both domain and codomain are types.
val square : Int => Int = x => x * xNewerOlder