diff options
author | obscuren <geffobscura@gmail.com> | 2014-01-24 05:33:51 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-01-24 05:33:51 +0800 |
commit | 7bf4f2a908235c75e795d0ca3796c76f9fc99454 (patch) | |
tree | ff33f20b5dcee85adee0ee506d53bb9095694913 /dev_console.go | |
parent | 501db83dfd4061c75822c622512cee31935ab0a6 (diff) | |
download | go-tangerine-7bf4f2a908235c75e795d0ca3796c76f9fc99454.tar go-tangerine-7bf4f2a908235c75e795d0ca3796c76f9fc99454.tar.gz go-tangerine-7bf4f2a908235c75e795d0ca3796c76f9fc99454.tar.bz2 go-tangerine-7bf4f2a908235c75e795d0ca3796c76f9fc99454.tar.lz go-tangerine-7bf4f2a908235c75e795d0ca3796c76f9fc99454.tar.xz go-tangerine-7bf4f2a908235c75e795d0ca3796c76f9fc99454.tar.zst go-tangerine-7bf4f2a908235c75e795d0ca3796c76f9fc99454.zip |
tx is now part of the chain package
Diffstat (limited to 'dev_console.go')
-rw-r--r-- | dev_console.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev_console.go b/dev_console.go index b3e0d73f9..b515b3e5c 100644 --- a/dev_console.go +++ b/dev_console.go @@ -112,7 +112,7 @@ func (i *Console) ParseInput(input string) bool { case "encode": fmt.Printf("%q\n", ethutil.Encode(tokens[1])) case "tx": - tx := ethutil.NewTransaction(tokens[1], ethutil.Big(tokens[2]), []string{""}) + tx := ethchain.NewTransaction(tokens[1], ethutil.Big(tokens[2]), []string{""}) i.ethereum.TxPool.QueueTransaction(tx) case "exit", "quit", "q": |