mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
trie: goimports fixes
This commit is contained in:
parent
8e8e8d6444
commit
405b06a6a6
2 changed files with 3 additions and 3 deletions
|
|
@ -72,7 +72,7 @@ func (t *Trie) Prove(key []byte, fromLevel uint, proofDb ethdb.KeyValueWriter) e
|
||||||
fromLevel--
|
fromLevel--
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
var hn = n
|
var hn node
|
||||||
n, hn = hasher.proofHash(n)
|
n, hn = hasher.proofHash(n)
|
||||||
if hash, ok := hn.(hashNode); ok || i == 0 {
|
if hash, ok := hn.(hashNode); ok || i == 0 {
|
||||||
// If the node's database encoding is a hash (or is the
|
// If the node's database encoding is a hash (or is the
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue