diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-04 18:44:34 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-02-04 22:55:50 +0800 |
commit | 6b939fbeaa7db139e06223926d6b4355ae0e71ca (patch) | |
tree | fdc6b49506651b6a1255f1bcd1dab609ba69a4b6 /eth | |
parent | 3274db19c7563e31f79418b63f6c10233cbaa32a (diff) | |
download | go-tangerine-6b939fbeaa7db139e06223926d6b4355ae0e71ca.tar go-tangerine-6b939fbeaa7db139e06223926d6b4355ae0e71ca.tar.gz go-tangerine-6b939fbeaa7db139e06223926d6b4355ae0e71ca.tar.bz2 go-tangerine-6b939fbeaa7db139e06223926d6b4355ae0e71ca.tar.lz go-tangerine-6b939fbeaa7db139e06223926d6b4355ae0e71ca.tar.xz go-tangerine-6b939fbeaa7db139e06223926d6b4355ae0e71ca.tar.zst go-tangerine-6b939fbeaa7db139e06223926d6b4355ae0e71ca.zip |
rpc: add jsonrpc version to module request, use json types
Diffstat (limited to 'eth')
-rw-r--r-- | eth/api.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eth/api.go b/eth/api.go index 0fa855f15..617643e10 100644 --- a/eth/api.go +++ b/eth/api.go @@ -27,8 +27,6 @@ import ( "sync" "time" - "gopkg.in/fatih/set.v0" - "github.com/ethereum/ethash" "github.com/ethereum/go-ethereum/accounts" "github.com/ethereum/go-ethereum/common" @@ -46,6 +44,7 @@ import ( "github.com/ethereum/go-ethereum/p2p" "github.com/ethereum/go-ethereum/rlp" "github.com/ethereum/go-ethereum/rpc" + "gopkg.in/fatih/set.v0" ) const ( |