We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a5e65 commit 64aa7edCopy full SHA for 64aa7ed
store/generated_key/v2/eigenda.go
@@ -125,7 +125,7 @@ func (e Store) BackendType() common.BackendType {
125
// this Verify method only needs to check the cert on chain. That is why the third parameter is ignored.
126
func (e Store) Verify(ctx context.Context, certBytes []byte, _ []byte) error {
127
var eigenDACert coretypes.EigenDACert
128
- err := rlp.DecodeBytes(certBytes, eigenDACert)
+ err := rlp.DecodeBytes(certBytes, &eigenDACert)
129
if err != nil {
130
return fmt.Errorf("RLP decoding EigenDA v2 cert: %w", err)
131
}
0 commit comments