good morning!!!!

Skip to content
Snippets Groups Projects
Commit 357d17ae authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Start at 0

parent 1d1ba409
No related branches found
No related tags found
No related merge requests found
......@@ -267,14 +267,13 @@ func TestLargeData(t *testing.T) {
trie := NewEmpty()
vals := make(map[string]*kv)
for i := byte(1); i < 255; i++ {
for i := byte(0); i < 255; i++ {
value := &kv{ethutil.LeftPadBytes([]byte{i}, 32), []byte{i}, false}
value2 := &kv{ethutil.LeftPadBytes([]byte{10, i}, 32), []byte{i}, false}
trie.Update(value.k, value.v)
trie.Update(value2.k, value2.v)
vals[string(value.k)] = value
vals[string(value2.k)] = value2
fmt.Println(value, "\n", value2)
}
it := trie.Iterator()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment