mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
update MakeSigner (#881)
This commit is contained in:
parent
0892822b8c
commit
2f116b3bc5
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ func MakeSigner(config *params.ChainConfig, blockNumber *big.Int, blockTime uint
|
||||||
case config.IsCurie(blockNumber):
|
case config.IsCurie(blockNumber):
|
||||||
signer = NewLondonSignerWithEIP4844(config.ChainID)
|
signer = NewLondonSignerWithEIP4844(config.ChainID)
|
||||||
case config.IsCancun(blockNumber, blockTime):
|
case config.IsCancun(blockNumber, blockTime):
|
||||||
signer = NewCancunSigner(config.ChainID)
|
signer = NewLondonSignerWithEIP4844(config.ChainID) // keep using LondonSignerWithEIP4844
|
||||||
case config.IsLondon(blockNumber):
|
case config.IsLondon(blockNumber):
|
||||||
signer = NewLondonSignerWithEIP4844(config.ChainID)
|
signer = NewLondonSignerWithEIP4844(config.ChainID)
|
||||||
case config.IsBerlin(blockNumber):
|
case config.IsBerlin(blockNumber):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue