diff options
author | Péter Szilágyi <peterke@gmail.com> | 2015-06-17 21:53:28 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2015-06-18 20:56:08 +0800 |
commit | 37c5ff392f71fddaa6acd92925f69e81876fe22e (patch) | |
tree | 30602b2ab8bd498ba3ace24d2d6447fcee107eb9 /eth/handler.go | |
parent | 2a7411bc9605dae9798ed29ed237e28c8fc98895 (diff) | |
download | dexon-37c5ff392f71fddaa6acd92925f69e81876fe22e.tar.gz dexon-37c5ff392f71fddaa6acd92925f69e81876fe22e.tar.zst dexon-37c5ff392f71fddaa6acd92925f69e81876fe22e.zip |
eth/fetcher: build longest chain until proven otherwise
Diffstat (limited to 'eth/handler.go')
-rw-r--r-- | eth/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/handler.go b/eth/handler.go index c3b58650d..b62815532 100644 --- a/eth/handler.go +++ b/eth/handler.go @@ -8,11 +8,11 @@ import ( "sync" "time" - "github.com/ethereum/go-ethereum/eth/fetcher" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/eth/downloader" + "github.com/ethereum/go-ethereum/eth/fetcher" "github.com/ethereum/go-ethereum/event" "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/logger/glog" |