Skip to content

Commit 64aa7ed

Browse files
committed
Fix broken V2 verify
Signed-off-by: litt3 <[email protected]>
1 parent 74a5e65 commit 64aa7ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

store/generated_key/v2/eigenda.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ func (e Store) BackendType() common.BackendType {
125125
// this Verify method only needs to check the cert on chain. That is why the third parameter is ignored.
126126
func (e Store) Verify(ctx context.Context, certBytes []byte, _ []byte) error {
127127
var eigenDACert coretypes.EigenDACert
128-
err := rlp.DecodeBytes(certBytes, eigenDACert)
128+
err := rlp.DecodeBytes(certBytes, &eigenDACert)
129129
if err != nil {
130130
return fmt.Errorf("RLP decoding EigenDA v2 cert: %w", err)
131131
}

0 commit comments

Comments
 (0)