aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-08 00:48:38 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-08 00:48:38 +0800
commitfca652eeeaef41efa7bc17ea2e182586324a1e52 (patch)
treee47c32338b83761972947b3c670da7a571d8b02c /eth
parentc27c2be5844a42e928a2aee6854dbb3c6ec1986e (diff)
downloadgo-tangerine-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar
go-tangerine-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.gz
go-tangerine-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.bz2
go-tangerine-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.lz
go-tangerine-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.xz
go-tangerine-fca652eeeaef41efa7bc17ea2e182586324a1e52.tar.zst
go-tangerine-fca652eeeaef41efa7bc17ea2e182586324a1e52.zip
Fix logger import path
Diffstat (limited to 'eth')
-rw-r--r--eth/protocol_test.go2
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"
)