Commit 7235e84c authored by Taylor Gerring's avatar Taylor Gerring

#469

parent d11fabd2
...@@ -149,7 +149,8 @@ func (self *UiLib) Compile(code string) (string, error) { ...@@ -149,7 +149,8 @@ func (self *UiLib) Compile(code string) (string, error) {
func (self *UiLib) Call(params map[string]interface{}) (string, error) { func (self *UiLib) Call(params map[string]interface{}) (string, error) {
object := mapToTxParams(params) object := mapToTxParams(params)
return self.XEth.Execute( return self.XEth.Call(
object["from"],
object["to"], object["to"],
object["value"], object["value"],
object["gas"], object["gas"],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment