diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-05 17:33:10 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-02-05 17:33:10 +0800 |
commit | 212828963172b3921827df15abdc8602480e947d (patch) | |
tree | fdc6b49506651b6a1255f1bcd1dab609ba69a4b6 /eth | |
parent | 3274db19c7563e31f79418b63f6c10233cbaa32a (diff) | |
parent | 6b939fbeaa7db139e06223926d6b4355ae0e71ca (diff) | |
download | dexon-212828963172b3921827df15abdc8602480e947d.tar dexon-212828963172b3921827df15abdc8602480e947d.tar.gz dexon-212828963172b3921827df15abdc8602480e947d.tar.bz2 dexon-212828963172b3921827df15abdc8602480e947d.tar.lz dexon-212828963172b3921827df15abdc8602480e947d.tar.xz dexon-212828963172b3921827df15abdc8602480e947d.tar.zst dexon-212828963172b3921827df15abdc8602480e947d.zip |
Merge pull request #2171 from karalabe/rpc-modules-fix
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 ( |