mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-30 00:23:46 +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
|
||||
}
|
||||
}
|
||||
sender, err := types.LatestSignerForChainID(tx.ChainId()).Sender(tx)
|
||||
sender, err := types.LatestSignerForChainID(w.chainConfig.ChainID).Sender(tx)
|
||||
if err != nil {
|
||||
log.Debug("Skip an invalid proposed transaction", "hash", tx.Hash(), "reason", err)
|
||||
continue
|
||||
|
|
|
|||
Loading…
Reference in a new issue