This commit is contained in:
Taylor Gerring 2015-03-12 11:09:25 -05:00
parent d11fabd2ef
commit 7235e84c75
1 changed files with 2 additions and 1 deletions

View File

@ -149,7 +149,8 @@ func (self *UiLib) Compile(code string) (string, error) {
func (self *UiLib) Call(params map[string]interface{}) (string, error) {
object := mapToTxParams(params)
return self.XEth.Execute(
return self.XEth.Call(
object["from"],
object["to"],
object["value"],
object["gas"],