go-ethereum/triedb
rayoo f39f22df5c triedb/pathdb: fix layer 5 key range in storage iterator traversal test
Mirror the account-iterator test fix from #34639 into the sibling
storage-iterator test in the same file. The layer-5 diff condition used
`i > 50 || i < 85`, which is true for every byte in the 0..255 loop
since the two ranges cover the full byte space between them.

Switch to `i > 50 && i < 85` so layer 5 only covers the intended
band (51..84), consistent with the fix already applied to
TestAccountIteratorTraversalValues in #34639 and to both variants of
TestAccountIteratorTraversalValues / TestStorageIteratorTraversalValues
in core/state/snapshot/iterator_test.go from #34638.
2026-05-06 12:33:39 +08:00
..
database trie: optimize memory allocation (#30932) 2025-03-25 14:59:44 +01:00
hashdb core, miner, tests: introduce codedb and simplify cachingDB (#33816) 2026-03-10 08:29:21 +01:00
internal triedb, triedb/internal, triedb/pathdb: add GenerateTrie + extract shared pipeline into triedb/internal (#34654) 2026-04-07 14:36:53 +08:00
pathdb triedb/pathdb: fix layer 5 key range in storage iterator traversal test 2026-05-06 12:33:39 +08:00
database.go trie: group 2^N binary trie nodes in serialization (#34794) 2026-05-01 15:28:19 +02:00
generate.go triedb, triedb/internal, triedb/pathdb: add GenerateTrie + extract shared pipeline into triedb/internal (#34654) 2026-04-07 14:36:53 +08:00
generate_test.go triedb, triedb/internal, triedb/pathdb: add GenerateTrie + extract shared pipeline into triedb/internal (#34654) 2026-04-07 14:36:53 +08:00
history.go cmd, triedb: implement history inspection (#29267) 2024-03-22 20:12:10 +08:00
preimages.go all: remove the dependency from trie to triedb (#28824) 2024-02-13 14:49:53 +01:00
preimages_test.go triedb: add test suite for preimage store (#31574) 2025-05-05 14:01:53 +08:00
states.go all: update license comments and AUTHORS (#31133) 2025-02-05 23:01:17 +01:00