From 325334f61aec9339e7c8f3b6f41e549e56a51522 Mon Sep 17 00:00:00 2001 From: Matthew Halpern Date: Thu, 14 Feb 2019 07:18:32 -0800 Subject: [PATCH] light: enforce camel case variable names (#19054) --- light/odr_util.go | 2 +- light/trie.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/light/odr_util.go b/light/odr_util.go index 073f0d642..00103a76b 100644 --- a/light/odr_util.go +++ b/light/odr_util.go @@ -28,7 +28,7 @@ import ( "github.com/ethereum/go-ethereum/rlp" ) -var sha3_nil = crypto.Keccak256Hash(nil) +var sha3Nil = crypto.Keccak256Hash(nil) func GetHeaderByNumber(ctx context.Context, odr OdrBackend, number uint64) (*types.Header, error) { db := odr.Database() diff --git a/light/trie.go b/light/trie.go index ab4e18b43..4d4abe137 100644 --- a/light/trie.go +++ b/light/trie.go @@ -67,7 +67,7 @@ func (db *odrDatabase) CopyTrie(t state.Trie) state.Trie { } func (db *odrDatabase) ContractCode(addrHash, codeHash common.Hash) ([]byte, error) { - if codeHash == sha3_nil { + if codeHash == sha3Nil { return nil, nil } if code, err := db.backend.Database().Get(codeHash[:]); err == nil {