Skip to content

Commit 02dfe86

Browse files
authored
interop: fix debug message in miner/worker (#557)
1 parent eec054d commit 02dfe86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miner/worker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ func (miner *Miner) checkInterop(ctx context.Context, tx *types.Transaction, log
461461
}
462462
if err := b.CheckAccessList(ctx, accessList, interoptypes.CrossUnsafe, interoptypes.ExecutingDescriptor{Timestamp: logTimestamp, Timeout: 0}); err != nil {
463463
if ctx.Err() != nil { // don't reject transactions permanently on RPC timeouts etc.
464-
log.Debug("CheckMessages timed out", "err", ctx.Err())
464+
log.Debug("CheckAccessList timed out", "err", ctx.Err())
465465
return err
466466
}
467467
txInteropRejectedCounter.Inc(1)

0 commit comments

Comments
 (0)