diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-06 02:53:53 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-06 02:53:53 +0800 |
commit | c9985bf563888d5f346408d2ff174167e8b65880 (patch) | |
tree | f9ef6249248c18ffb9060fc4ccf5ce29ab6f5b65 /cmd/mist/bindings.go | |
parent | 22c0c5465a274cad10367aa3f68ca64bf61e90eb (diff) | |
download | go-tangerine-c9985bf563888d5f346408d2ff174167e8b65880.tar go-tangerine-c9985bf563888d5f346408d2ff174167e8b65880.tar.gz go-tangerine-c9985bf563888d5f346408d2ff174167e8b65880.tar.bz2 go-tangerine-c9985bf563888d5f346408d2ff174167e8b65880.tar.lz go-tangerine-c9985bf563888d5f346408d2ff174167e8b65880.tar.xz go-tangerine-c9985bf563888d5f346408d2ff174167e8b65880.tar.zst go-tangerine-c9985bf563888d5f346408d2ff174167e8b65880.zip |
Fixed peer window. Minor tweaks and fixes
Diffstat (limited to 'cmd/mist/bindings.go')
-rw-r--r-- | cmd/mist/bindings.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/bindings.go b/cmd/mist/bindings.go index 66d8d1491..9e55592e6 100644 --- a/cmd/mist/bindings.go +++ b/cmd/mist/bindings.go @@ -57,7 +57,7 @@ func (gui *Gui) Transact(recipient, value, gas, gasPrice, d string) (string, err data = ethutil.Bytes2Hex(utils.FormatTransactionData(d)) } - return gui.pipe.Transact(gui.privateKey(), recipient, value, gas, gasPrice, data) + return gui.xeth.Transact(gui.privateKey(), recipient, value, gas, gasPrice, data) } func (gui *Gui) SetCustomIdentifier(customIdentifier string) { |