aboutsummaryrefslogtreecommitdiffstats
path: root/javascript/types.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 /javascript/types.go
parent1c51e12c181fb781cafaf34fc8dd2cb07fd85df7 (diff)
downloaddexon-cebb149f5cfaf008240d7069fd220401950cc7ee.tar.gz
dexon-cebb149f5cfaf008240d7069fd220401950cc7ee.tar.zst
dexon-cebb149f5cfaf008240d7069fd220401950cc7ee.zip
removed key while in the process of moving to the new key storage
Diffstat (limited to 'javascript/types.go')
-rw-r--r--javascript/types.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/types.go b/javascript/types.go
index 2ee5b39ba..17f1b739e 100644
--- a/javascript/types.go
+++ b/javascript/types.go
@@ -75,7 +75,7 @@ func (self *JSEthereum) GetStateObject(addr string) otto.Value {
}
func (self *JSEthereum) Transact(key, recipient, valueStr, gasStr, gasPriceStr, dataStr string) otto.Value {
- r, err := self.XEth.Transact(key, recipient, valueStr, gasStr, gasPriceStr, dataStr)
+ r, err := self.XEth.Transact(recipient, valueStr, gasStr, gasPriceStr, dataStr)
if err != nil {
fmt.Println(err)