From f70beaf822bca873ee46d48122061464eab6ca89 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet Date: Fri, 7 Dec 2018 10:12:00 +0100 Subject: [PATCH] eth: fix linter issue --- eth/api.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eth/api.go b/eth/api.go index f68bb03e65..0fa3a90b5e 100644 --- a/eth/api.go +++ b/eth/api.go @@ -28,13 +28,13 @@ import ( "strings" "time" - "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/rawdb" "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/types" + "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/internal/ethapi" "github.com/ethereum/go-ethereum/rlp" "github.com/ethereum/go-ethereum/rpc" @@ -336,10 +336,10 @@ func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]*BadBlockArgs, } type AccountRangeResult struct { - Addresses []common.Address `json:"addresses"` - Next common.Address `json:"next"` - Preimages []common.Hash `json:"preimages"` - NextPreimage common.Hash `json:"nextPreimage"` + Addresses []common.Address `json:"addresses"` + Next common.Address `json:"next"` + Preimages []common.Hash `json:"preimages"` + NextPreimage common.Hash `json:"nextPreimage"` } func accountRange(st state.Trie, start *common.Address, maxResult int) (AccountRangeResult, error) {