diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-31 21:20:11 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-31 21:20:11 +0800 |
commit | 8826e9694c3a8d4f480f0a021d8c02f7f61612c6 (patch) | |
tree | 0c628ab800a0f701d0ae9adf5026c3d8a503232e /javascript | |
parent | b1c247231b11f313ca0eedff75ea563926d23f68 (diff) | |
download | go-tangerine-8826e9694c3a8d4f480f0a021d8c02f7f61612c6.tar.gz go-tangerine-8826e9694c3a8d4f480f0a021d8c02f7f61612c6.tar.zst go-tangerine-8826e9694c3a8d4f480f0a021d8c02f7f61612c6.zip |
Moved utils to cmd
Diffstat (limited to 'javascript')
-rw-r--r-- | javascript/javascript_runtime.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/javascript_runtime.go b/javascript/javascript_runtime.go index c539c4348..deb6fe305 100644 --- a/javascript/javascript_runtime.go +++ b/javascript/javascript_runtime.go @@ -9,12 +9,12 @@ import ( "github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/chain" + "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/ethpipe" "github.com/ethereum/go-ethereum/ethstate" "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/event" "github.com/ethereum/go-ethereum/logger" - "github.com/ethereum/go-ethereum/utils" "github.com/obscuren/otto" ) |