Skip to content

Commit c418aa7

Browse files
committed
fix: get proven time
1 parent b0cb9ed commit c418aa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: core/processor.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ func (b *Processor) GetProvenTime(wi *WithdrawalInitiatedLog) (*big.Int, error)
248248
return nil, err
249249
}
250250

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

0 commit comments

Comments
 (0)