diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-23 17:51:48 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-23 17:51:48 +0800 |
commit | b962779a1318138e08c6e84a537fdbc6c9ebfd97 (patch) | |
tree | 38ca5fe5bad13a0d947c38a13bb620ea8b80d2a9 /ethereum/dev_console.go | |
parent | a3c8f83562c7a740ac89e63bf36f2ce44ae6627a (diff) | |
download | go-tangerine-b962779a1318138e08c6e84a537fdbc6c9ebfd97.tar go-tangerine-b962779a1318138e08c6e84a537fdbc6c9ebfd97.tar.gz go-tangerine-b962779a1318138e08c6e84a537fdbc6c9ebfd97.tar.bz2 go-tangerine-b962779a1318138e08c6e84a537fdbc6c9ebfd97.tar.lz go-tangerine-b962779a1318138e08c6e84a537fdbc6c9ebfd97.tar.xz go-tangerine-b962779a1318138e08c6e84a537fdbc6c9ebfd97.tar.zst go-tangerine-b962779a1318138e08c6e84a537fdbc6c9ebfd97.zip |
Minor update and fixes to the gui and console
Diffstat (limited to 'ethereum/dev_console.go')
-rw-r--r-- | ethereum/dev_console.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereum/dev_console.go b/ethereum/dev_console.go index 0f03b5e53..583b8bd0b 100644 --- a/ethereum/dev_console.go +++ b/ethereum/dev_console.go @@ -204,7 +204,7 @@ func (i *Console) ParseInput(input string) bool { break } - contract := ethchain.NewContractCreationTx(ethutil.Big(tokens[0]), ethutil.Big(tokens[1]), mainScript, initScript) + contract := ethchain.NewContractCreationTx(ethutil.Big(tokens[0]), ethutil.Big(tokens[1]), ethutil.Big(tokens[1]), mainScript, initScript) key := ethutil.Config.Db.GetKeys()[0] contract.Sign(key.PrivateKey) |