diff options
author | Bas van Kervel <bas@ethdev.com> | 2015-06-09 15:48:18 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:01:41 +0800 |
commit | 09d0d55fc579701191ff34f38cc20b437ee23577 (patch) | |
tree | 16f77a960c7428145961891b7f116e25dc6daf1b /rpc/jeth.go | |
parent | faab931ce1282dea50c8fdf0577c42ee67f69828 (diff) | |
download | go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.gz go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.tar.zst go-tangerine-09d0d55fc579701191ff34f38cc20b437ee23577.zip |
added debug API
Diffstat (limited to 'rpc/jeth.go')
-rw-r--r-- | rpc/jeth.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/rpc/jeth.go b/rpc/jeth.go index 0473adc4d..e578775bb 100644 --- a/rpc/jeth.go +++ b/rpc/jeth.go @@ -4,12 +4,13 @@ import ( "encoding/json" "fmt" + "reflect" + "github.com/ethereum/go-ethereum/jsre" - "github.com/robertkrimen/otto" - "github.com/ethereum/go-ethereum/rpc/comms" "github.com/ethereum/go-ethereum/rpc/codec" + "github.com/ethereum/go-ethereum/rpc/comms" "github.com/ethereum/go-ethereum/rpc/shared" - "reflect" + "github.com/robertkrimen/otto" ) type Jeth struct { |