From 094cdac847a474472fd331f6c12164e1573868d9 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Fri, 21 Jan 2022 10:45:40 +0100 Subject: [PATCH] trie: fix test todo --- trie/proof_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/trie/proof_test.go b/trie/proof_test.go index 2c92bddf39b52..29866714c2d0a 100644 --- a/trie/proof_test.go +++ b/trie/proof_test.go @@ -1069,14 +1069,11 @@ func nonRandomTrie(n int) (*Trie, map[string]*kv) { } func TestRangeProofKeysWithSharedPrefix(t *testing.T) { - // TODO: test fails if 1st key/value pair is omitted. keys := [][]byte{ - common.Hex2Bytes("1000000000000000000000000000000000000000000000000000000000000000"), common.Hex2Bytes("aa10000000000000000000000000000000000000000000000000000000000000"), common.Hex2Bytes("aa20000000000000000000000000000000000000000000000000000000000000"), } vals := [][]byte{ - common.Hex2Bytes("01"), common.Hex2Bytes("02"), common.Hex2Bytes("03"), }