From 22d5684c885cdbaa54228257ff0cf7a7ee8adf46 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Mon, 29 Jul 2024 20:17:01 +0200 Subject: [PATCH] remove comment --- proof_ipa.go | 1 - 1 file changed, 1 deletion(-) diff --git a/proof_ipa.go b/proof_ipa.go index c732710..e540163 100644 --- a/proof_ipa.go +++ b/proof_ipa.go @@ -558,7 +558,6 @@ func (x bytesSlice) Swap(i, j int) { x[i], x[j] = x[j], x[i] } // Verify is the API function that verifies a verkle proofs as found in a block/execution payload. func Verify(vp *VerkleProof, preStateRoot []byte, postStateRoot []byte, statediff StateDiff) error { - // TODO: check that `OtherStems` have expected length and values. proof, err := DeserializeProof(vp, statediff) if err != nil {