light: golint fixes

This commit is contained in:
Mike Kinney 2019-12-09 23:22:20 -08:00
parent ce98156177
commit 213b5563d9

View file

@ -103,7 +103,7 @@ var (
errNoHeader = errors.New("header not found") errNoHeader = errors.New("header not found")
chtPrefix = []byte("chtRootV2-") // chtPrefix + chtNum (uint64 big endian) -> trie root hash chtPrefix = []byte("chtRootV2-") // chtPrefix + chtNum (uint64 big endian) -> trie root hash
// ChtTablePrefix is the prefix used "cht-" // ChtTablePrefix is the prefix used "cht-"
ChtTablePrefix = "cht-" ChtTablePrefix = "cht-"
) )
// ChtNode structures are stored in the Canonical Hash Trie in an RLP encoded format // ChtNode structures are stored in the Canonical Hash Trie in an RLP encoded format
@ -225,7 +225,7 @@ func (c *ChtIndexerBackend) Commit() error {
} }
var ( var (
bloomTriePrefix = []byte("bltRoot-") // bloomTriePrefix + bloomTrieNum (uint64 big endian) -> trie root hash bloomTriePrefix = []byte("bltRoot-") // bloomTriePrefix + bloomTrieNum (uint64 big endian) -> trie root hash
// BloomTrieTablePrefix is the prefix used "blt-" // BloomTrieTablePrefix is the prefix used "blt-"
BloomTrieTablePrefix = "blt-" BloomTrieTablePrefix = "blt-"
) )