Merge pull request #2214 from filecoin-project/fix/too-high-nonce-log

miner: Fix mpool too-high-nonce-msgs log
This commit is contained in:
Łukasz Magiera 2020-07-01 17:30:27 +02:00 committed by GitHub
commit 70d8378404
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -561,7 +561,7 @@ func SelectMessages(ctx context.Context, al ActorLookup, ts *types.TipSet, msgs
}
if tooHighNonceMsgs > 0 {
log.Warnf("%d messages in mempool had too high nonce", tooLowFundMsgs)
log.Warnf("%d messages in mempool had too high nonce", tooHighNonceMsgs)
}
sm := time.Now()