mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
fix linter
This commit is contained in:
parent
7649860d76
commit
0d72a4c26b
1 changed files with 2 additions and 2 deletions
|
|
@ -69,8 +69,8 @@ func NewVerkleTrie(root common.Hash, db database.Database, cache *utils.PointCac
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (trie *VerkleTrie) FlatdbNodeResolver(path []byte) ([]byte, error) {
|
func (t *VerkleTrie) FlatdbNodeResolver(path []byte) ([]byte, error) {
|
||||||
return trie.reader.node(path, common.Hash{})
|
return t.reader.node(path, common.Hash{})
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetKey returns the sha3 preimage of a hashed key that was previously used
|
// GetKey returns the sha3 preimage of a hashed key that was previously used
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue