aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/bindings.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-29 03:50:09 +0800
committerobscuren <geffobscura@gmail.com>2015-01-29 03:50:09 +0800
commitcebb149f5cfaf008240d7069fd220401950cc7ee (patch)
treedde8eab94655c68893ebf110395d28ce8ef43ec2 /cmd/mist/bindings.go
parent1c51e12c181fb781cafaf34fc8dd2cb07fd85df7 (diff)
downloaddexon-cebb149f5cfaf008240d7069fd220401950cc7ee.tar
dexon-cebb149f5cfaf008240d7069fd220401950cc7ee.tar.gz
dexon-cebb149f5cfaf008240d7069fd220401950cc7ee.tar.bz2
dexon-cebb149f5cfaf008240d7069fd220401950cc7ee.tar.lz
dexon-cebb149f5cfaf008240d7069fd220401950cc7ee.tar.xz
dexon-cebb149f5cfaf008240d7069fd220401950cc7ee.tar.zst
dexon-cebb149f5cfaf008240d7069fd220401950cc7ee.zip
removed key while in the process of moving to the new key storage
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 f6d1c40da..706c789b1 100644
--- a/cmd/mist/bindings.go
+++ b/cmd/mist/bindings.go
@@ -61,7 +61,7 @@ func (gui *Gui) Transact(recipient, value, gas, gasPrice, d string) (string, err
data = ethutil.Bytes2Hex(utils.FormatTransactionData(d))
}
- return gui.xeth.Transact(gui.privateKey(), recipient, value, gas, gasPrice, data)
+ return gui.xeth.Transact(recipient, value, gas, gasPrice, data)
}
func (gui *Gui) SetCustomIdentifier(customIdentifier string) {