Skip to content

Commit b0cb9ed

Browse files
committed
chore: attach more error info
1 parent 85bed6b commit b0cb9ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/processor.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -250,22 +250,22 @@ func (b *Processor) GetProvenTime(wi *WithdrawalInitiatedLog) (*big.Int, error)
250250

251251
receipt, err := b.L1Client.TransactionReceipt(context.Background(), common.HexToHash(wi.TransactionHash))
252252
if err != nil {
253-
return nil, err
253+
return nil, fmt.Errorf("TransactionReceipt err: %v, wi: %v", err, wi)
254254
}
255255

256256
withdrawal, err := b.toWithdrawal(wi, receipt)
257257
if err != nil {
258-
return nil, err
258+
return nil, fmt.Errorf("toWithdrawal err: %v, wi: %v", err, wi)
259259
}
260260

261261
withdrawalHash, err := b.hashWithdrawal(withdrawal)
262262
if err != nil {
263-
return nil, err
263+
return nil, fmt.Errorf("hashWithdrawal err: %v, wi: %v", err, wi)
264264
}
265265

266266
provenWithdrawal, err := optimismPortal.ProvenWithdrawals(nil, common.HexToHash(withdrawalHash))
267267
if err != nil {
268-
return nil, err
268+
return nil, fmt.Errorf("optimismPortal.ProvenWithdrawals err: %v, wi: %v", err, wi)
269269
}
270270

271271
return provenWithdrawal.Timestamp, nil

0 commit comments

Comments
 (0)