diff options
author | Felix Lange <fjl@twurst.com> | 2014-11-01 01:40:32 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2014-11-01 01:52:58 +0800 |
commit | f3473312ba90b37b9a4100592a8c4d5d5bf245b7 (patch) | |
tree | efc14c86ce3c9b45bcc09c84dc9fbed79c089cb9 /cmd | |
parent | 5af4ff985dc43b648bdc96394a3bd96d9658ae0a (diff) | |
download | go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.gz go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.zst go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.zip |
all: fix rename breakage
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ethereum/main.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index d7bc74c27..c78972bfe 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -26,7 +26,6 @@ import ( "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/logger" - "github.com/ethgo.old/ethlog" ) const ( @@ -131,5 +130,5 @@ func main() { // this blocks the thread ethereum.WaitForShutdown() - ethlog.Flush() + logger.Flush() } |