diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-13 05:31:13 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-13 05:31:13 +0800 |
commit | fa917387e4312981e7d9151c393b6c370e95ffbe (patch) | |
tree | 278168194918c9dd2f9dd2d65b0a5227546b62ac /cmd | |
parent | 310ca62285d2d4aefed91efddefeac7e83b7671d (diff) | |
parent | 14bdcd2c052214ca78c7cb163771c780e2fd1291 (diff) | |
download | dexon-fa917387e4312981e7d9151c393b6c370e95ffbe.tar dexon-fa917387e4312981e7d9151c393b6c370e95ffbe.tar.gz dexon-fa917387e4312981e7d9151c393b6c370e95ffbe.tar.bz2 dexon-fa917387e4312981e7d9151c393b6c370e95ffbe.tar.lz dexon-fa917387e4312981e7d9151c393b6c370e95ffbe.tar.xz dexon-fa917387e4312981e7d9151c393b6c370e95ffbe.tar.zst dexon-fa917387e4312981e7d9151c393b6c370e95ffbe.zip |
Merge branch 'rpcfrontier' into develop
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/mist/ui_lib.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/mist/ui_lib.go b/cmd/mist/ui_lib.go index 2679e0f95..cc213b49a 100644 --- a/cmd/mist/ui_lib.go +++ b/cmd/mist/ui_lib.go @@ -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"], |