Skip to content

Commit

Permalink
fix nit
Browse files Browse the repository at this point in the history
Signed-off-by: Ignacio Hagopian <[email protected]>
  • Loading branch information
jsign committed Oct 28, 2024
1 parent 1ac865c commit ff97fbe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions trie/verkle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ func TestReproduceTree(t *testing.T) {
t.Fatalf("could not create proof: %v", err)
}
vktProof, statediff, err := verkle.SerializeProof(proof)
if err != nil {
t.Fatalf("could not serialize proof: %v", err)
}
preStateRoot := root.Commit().Bytes()
if err := verkle.Verify(vktProof, preStateRoot[:], nil, statediff); err != nil {
t.Fatalf("could not verify proof: %v", err)
Expand Down

0 comments on commit ff97fbe

Please sign in to comment.