Skip to content

Commit

Permalink
fix: test for ExtStatus count when two missing stems collide
Browse files Browse the repository at this point in the history
  • Loading branch information
gballet committed Jan 29, 2024
1 parent 16737a7 commit c7aa9a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trie/verkle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ func TestReproduceCondrieuStemAggregationInProofOfAbsence(t *testing.T) {
t.Logf("tree: %s\n%x\n", verkle.ToDot(root), root.Commitment().Bytes())

t.Logf("%d", len(proof.ExtStatus))
if len(proof.ExtStatus) != 5 {
t.Fatalf("invalid number of declared stems: %d != 5", len(proof.ExtStatus))
if len(proof.ExtStatus) != 6 {
t.Fatalf("invalid number of declared stems: %d != 6", len(proof.ExtStatus))
}
}

Expand Down

0 comments on commit c7aa9a9

Please sign in to comment.