good morning!!!!

Skip to content
Snippets Groups Projects
Commit c259e687 authored by Bas van Kervel's avatar Bas van Kervel Committed by Felix Lange
Browse files

light: update txpool signer to EIP155 (#14720)

parent 13cda8d9
No related branches found
No related tags found
No related merge requests found
......@@ -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),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment