mirror of
https://github.com/status-im/status-go.git
synced 2025-01-24 13:41:24 +00:00
fixes issue with wrong tx signer chainId
This commit is contained in:
parent
6d061f4249
commit
b6e356a352
2
vendor/github.com/ethereum/go-ethereum/light/txpool.go
generated
vendored
2
vendor/github.com/ethereum/go-ethereum/light/txpool.go
generated
vendored
@ -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…
x
Reference in New Issue
Block a user