Skip to content

Commit

Permalink
more logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bendanzhentan committed Jan 15, 2024
1 parent 0e5631b commit 27a5f1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trie/proof.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func (t *Trie) Prove(key []byte, fromLevel uint, proofDb ethdb.KeyValueWriter) e
tn = n.Val
prefix = append(prefix, n.Key...)
key = key[len(n.Key):]
log.Info("bilibili loop", "marker", hexutils.BytesToHex(marker), "index", i, "type", "SHORT NODE", "note", "key found")
log.Info("bilibili loop", "marker", hexutils.BytesToHex(marker), "index", i, "type", "SHORT NODE", "len(n.Key)", len(n.Key), "n.Key", hexutils.BytesToHex(n.Key), "tn", tn, "note", "key found")
}
nodes = append(nodes, n)
case *fullNode:
Expand Down

0 comments on commit 27a5f1d

Please sign in to comment.