aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/bindings.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-06 02:53:53 +0800
committerobscuren <geffobscura@gmail.com>2015-01-06 02:53:53 +0800
commitc9985bf563888d5f346408d2ff174167e8b65880 (patch)
treef9ef6249248c18ffb9060fc4ccf5ce29ab6f5b65 /cmd/mist/bindings.go
parent22c0c5465a274cad10367aa3f68ca64bf61e90eb (diff)
downloadgo-tangerine-c9985bf563888d5f346408d2ff174167e8b65880.tar.gz
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.go2
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) {