diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-29 03:50:09 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-29 03:50:09 +0800 |
commit | cebb149f5cfaf008240d7069fd220401950cc7ee (patch) | |
tree | dde8eab94655c68893ebf110395d28ce8ef43ec2 /rpc | |
parent | 1c51e12c181fb781cafaf34fc8dd2cb07fd85df7 (diff) | |
download | dexon-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 'rpc')
-rw-r--r-- | rpc/packages.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/packages.go b/rpc/packages.go index 700b9b2b3..5d17a0f90 100644 --- a/rpc/packages.go +++ b/rpc/packages.go @@ -65,7 +65,7 @@ func (p *EthereumApi) Transact(args *NewTxArgs, reply *interface{}) error { if err != nil { return err } - result, _ := p.xeth.Transact( /* TODO specify account */ "", args.Recipient, args.Value, args.Gas, args.GasPrice, args.Body) + result, _ := p.xeth.Transact( /* TODO specify account */ args.Recipient, args.Value, args.Gas, args.GasPrice, args.Body) *reply = result return nil } @@ -76,7 +76,7 @@ func (p *EthereumApi) Create(args *NewTxArgs, reply *interface{}) error { return err } - result, _ := p.xeth.Transact( /* TODO specify account */ "", "", args.Value, args.Gas, args.GasPrice, args.Body) + result, _ := p.xeth.Transact( /* TODO specify account */ "", args.Value, args.Gas, args.GasPrice, args.Body) *reply = result return nil } |