mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
trie: update the valid function comments (#29809)
This commit is contained in:
parent
473ee8fc07
commit
be5df74ed5
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ type nodeOp struct {
|
|||
hash common.Hash // hash of the node content (empty for node deletion)
|
||||
}
|
||||
|
||||
// isDelete indicates if the operation is a database deletion.
|
||||
// valid checks whether the node operation is valid.
|
||||
func (op *nodeOp) valid() bool {
|
||||
if op.del && len(op.blob) != 0 {
|
||||
return false
|
||||
|
|
|
|||
Loading…
Reference in a new issue