From e1365b24647481ca92d95f678f6f8ee9773202cb Mon Sep 17 00:00:00 2001 From: gary rong Date: Wed, 23 Sep 2020 15:59:11 +0800 Subject: [PATCH] trie: fix gaped range proof test case (#21484) --- trie/proof_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trie/proof_test.go b/trie/proof_test.go index 55585e4daf..db0e4051c8 100644 --- a/trie/proof_test.go +++ b/trie/proof_test.go @@ -451,7 +451,7 @@ func TestBadRangeProof(t *testing.T) { // with the first/last second element(since small values are // embedded in the parent). Avoid this case. index = mrand.Intn(end - start) - if (index == end-start-1 || index == 0) && end <= 100 { + if (index == 0 && start < 100) || (index == end-start-1 && end <= 100) { continue } keys = append(keys[:index], keys[index+1:]...)