Skip to content

Commit

Permalink
Merge pull request #2502 from OffchainLabs/print-not-found-keyset
Browse files Browse the repository at this point in the history
Add keysetHash to "Couldn't get keyset" log msg
  • Loading branch information
Tristan-Wilson authored Jul 18, 2024
2 parents 57ac2ad + 9dfde4a commit 16434a2
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 16434a2

Please sign in to comment.