mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
commit
19ebd0cb7b
2 changed files with 3 additions and 1 deletions
|
|
@ -1038,6 +1038,7 @@ func (c *Posv) CacheData(header *types.Header, txs []*types.Transaction, receipt
|
|||
}
|
||||
|
||||
if b == types.ReceiptStatusFailed {
|
||||
log.Debug("Sign tx failed", "hash", tx.Hash().String())
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -345,7 +345,8 @@ func GetRewardForCheckpoint(c *posv.Posv, chain consensus.ChainReader, number ui
|
|||
}
|
||||
}
|
||||
|
||||
if b == types.ReceiptStatusFailed {
|
||||
if b == types.ReceiptStatusFailed && i >= rCheckpoint {
|
||||
log.Debug("Sign tx failed", "hash", tx.Hash().String())
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue