From da26c4884be3ac2f430e39859da7fff5232b8fd5 Mon Sep 17 00:00:00 2001 From: Tuna Date: Sun, 24 Jun 2018 01:13:52 +0700 Subject: [PATCH] minor log cleaning up --- cmd/tomo/main.go | 2 +- eth/backend.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/tomo/main.go b/cmd/tomo/main.go index 8d314abdd7..b89e72c5f1 100644 --- a/cmd/tomo/main.go +++ b/cmd/tomo/main.go @@ -32,6 +32,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/consensus/clique" "github.com/ethereum/go-ethereum/console" + validatorContract "github.com/ethereum/go-ethereum/contracts/validator/contract" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/ethclient" @@ -40,7 +41,6 @@ import ( "github.com/ethereum/go-ethereum/metrics" "github.com/ethereum/go-ethereum/node" "gopkg.in/urfave/cli.v1" - validatorContract "github.com/ethereum/go-ethereum/contracts/validator/contract" ) const ( diff --git a/eth/backend.go b/eth/backend.go index 737a9ea25c..a81f8be9d8 100644 --- a/eth/backend.go +++ b/eth/backend.go @@ -238,7 +238,6 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) { } } } - return nil } }