mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
fix: test for ExtStatus count when two missing stems collide (#347)
This commit is contained in:
parent
95d7f39db5
commit
b7bd9e33ad
1 changed files with 2 additions and 2 deletions
|
|
@ -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))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue