diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-11-25 20:22:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-25 20:22:53 +0800 |
commit | 9c3ea0d32d26957fd73ddf07e37d93091de596fd (patch) | |
tree | ccae1f1af7462b1364df3fabde6b90ea16c90377 /les/backend.go | |
parent | 66441c9b4b5fce27ea6d7883f21b9890c9af65cb (diff) | |
parent | 67e0894d9e696be32d7b5f78bb6f89ed0e03f382 (diff) | |
download | dexon-9c3ea0d32d26957fd73ddf07e37d93091de596fd.tar dexon-9c3ea0d32d26957fd73ddf07e37d93091de596fd.tar.gz dexon-9c3ea0d32d26957fd73ddf07e37d93091de596fd.tar.bz2 dexon-9c3ea0d32d26957fd73ddf07e37d93091de596fd.tar.lz dexon-9c3ea0d32d26957fd73ddf07e37d93091de596fd.tar.xz dexon-9c3ea0d32d26957fd73ddf07e37d93091de596fd.tar.zst dexon-9c3ea0d32d26957fd73ddf07e37d93091de596fd.zip |
Merge pull request #3346 from obscuren/registrar-removal
common/registrar, eth: removed registrar (tech debt)
Diffstat (limited to 'les/backend.go')
-rw-r--r-- | les/backend.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/les/backend.go b/les/backend.go index 1264acfd1..774fa8eab 100644 --- a/les/backend.go +++ b/les/backend.go @@ -26,7 +26,6 @@ import ( "github.com/ethereum/go-ethereum/accounts" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/compiler" - "github.com/ethereum/go-ethereum/common/httpclient" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/eth" @@ -62,7 +61,6 @@ type LightEthereum struct { eventMux *event.TypeMux pow *ethash.Ethash - httpclient *httpclient.HTTPClient accountManager *accounts.Manager solcPath string solc *compiler.Solidity @@ -96,7 +94,6 @@ func New(ctx *node.ServiceContext, config *eth.Config) (*LightEthereum, error) { accountManager: ctx.AccountManager, pow: pow, shutdownChan: make(chan bool), - httpclient: httpclient.New(config.DocRoot), netVersionId: config.NetworkId, NatSpec: config.NatSpec, PowTest: config.PowTest, |