trie: rm minor leftover

This commit is contained in:
Martin Holst Swende 2025-04-18 09:29:55 +02:00
parent c0ecc3a661
commit bea705db05
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0

View file

@ -489,7 +489,6 @@ func VerifyRangeProof(rootHash common.Hash, firstKey []byte, keys [][]byte, valu
// - monotonically increasing,
// - not expanding down prefix-paths
// - and contains no deletions
//last := []byte{0}
for i := 0; i < len(keys); i++ {
if i < len(keys)-1 {
if bytes.Compare(keys[i], keys[i+1]) >= 0 {