Skip to content

Commit eb40292

Browse files
committed
cmd/mist: updated xeth transact
1 parent 5ebc228 commit eb40292

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cmd/mist/bindings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type plugin struct {
4040
func (gui *Gui) Transact(from, recipient, value, gas, gasPrice, d string) (string, error) {
4141
d = common.Bytes2Hex(utils.FormatTransactionData(d))
4242

43-
return gui.xeth.Transact(from, recipient, value, gas, gasPrice, d)
43+
return gui.xeth.Transact(from, recipient, "", value, gas, gasPrice, d)
4444
}
4545

4646
func (self *Gui) AddPlugin(pluginPath string) {

cmd/mist/ui_lib.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ func (self *UiLib) Transact(params map[string]interface{}) (string, error) {
119119
return self.XEth.Transact(
120120
object["from"],
121121
object["to"],
122+
"",
122123
object["value"],
123124
object["gas"],
124125
object["gasPrice"],

0 commit comments

Comments
 (0)