Skip to content

Commit

Permalink
Add keysetHash to "Couldn't get keyset" log msg
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-Wilson committed Jul 18, 2024
1 parent b066a58 commit 8cc3728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbstate/daprovider/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func RecoverPayloadFromDasBatch(

keysetPreimage, err := keysetFetcher.GetKeysetByHash(ctx, cert.KeysetHash)
if err != nil {
log.Error("Couldn't get keyset", "err", err)
log.Error("Couldn't get keyset", "err", err, "keysetHash", common.Bytes2Hex(cert.KeysetHash[:]))
return nil, err
}
if preimageRecorder != nil {
Expand Down

0 comments on commit 8cc3728

Please sign in to comment.