fixes issue with wrong tx signer chainId
This commit is contained in:
parent
6d061f4249
commit
b6e356a352
|
@ -81,7 +81,7 @@ type TxRelayBackend interface {
|
|||
func NewTxPool(config *params.ChainConfig, eventMux *event.TypeMux, chain *LightChain, relay TxRelayBackend) *TxPool {
|
||||
pool := &TxPool{
|
||||
config: config,
|
||||
signer: types.HomesteadSigner{},
|
||||
signer: types.NewEIP155Signer(config.ChainId),
|
||||
nonce: make(map[common.Address]uint64),
|
||||
pending: make(map[common.Hash]*types.Transaction),
|
||||
mined: make(map[common.Hash][]*types.Transaction),
|
||||
|
|
Loading…
Reference in New Issue