fix: test for ExtStatus count when two missing stems collide (#347)

This commit is contained in:
Guillaume Ballet 2024-01-29 13:47:11 +01:00
parent 95d7f39db5
commit b7bd9e33ad

View file

@ -313,8 +313,8 @@ func TestReproduceCondrieuStemAggregationInProofOfAbsence(t *testing.T) {
t.Logf("tree: %s\n%x\n", verkle.ToDot(root), root.Commitment().Bytes()) t.Logf("tree: %s\n%x\n", verkle.ToDot(root), root.Commitment().Bytes())
t.Logf("%d", len(proof.ExtStatus)) t.Logf("%d", len(proof.ExtStatus))
if len(proof.ExtStatus) != 5 { if len(proof.ExtStatus) != 6 {
t.Fatalf("invalid number of declared stems: %d != 5", len(proof.ExtStatus)) t.Fatalf("invalid number of declared stems: %d != 6", len(proof.ExtStatus))
} }
} }