mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-13 15:33:47 +00:00
fix(wokrer): fix an issue in sealBlockWith (#240)
This commit is contained in:
parent
4f368792dc
commit
02c6ee9672
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ func (w *worker) sealBlockWith(
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sender, err := types.LatestSignerForChainID(tx.ChainId()).Sender(tx)
|
sender, err := types.LatestSignerForChainID(w.chainConfig.ChainID).Sender(tx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Debug("Skip an invalid proposed transaction", "hash", tx.Hash(), "reason", err)
|
log.Debug("Skip an invalid proposed transaction", "hash", tx.Hash(), "reason", err)
|
||||||
continue
|
continue
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue