diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-08 00:48:38 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-08 00:48:38 +0800 |
commit | fca652eeeaef41efa7bc17ea2e182586324a1e52 (patch) | |
tree | e47c32338b83761972947b3c670da7a571d8b02c | |
parent | c27c2be5844a42e928a2aee6854dbb3c6ec1986e (diff) | |
download | dexon-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar dexon-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.gz dexon-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.bz2 dexon-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.lz dexon-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.xz dexon-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.zst dexon-fca652eeeaef41efa7bc17ea2e182586324a1e52.zip |
Fix logger import path
-rw-r--r-- | eth/protocol_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/protocol_test.go b/eth/protocol_test.go index c118e6aae..f499d033e 100644 --- a/eth/protocol_test.go +++ b/eth/protocol_test.go @@ -9,11 +9,11 @@ import ( "testing" "time" - ethlogger "github.com/ethereum/go-ethereu/logger" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/errs" "github.com/ethereum/go-ethereum/ethutil" + ethlogger "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/p2p" "github.com/ethereum/go-ethereum/p2p/discover" ) |