From 18b19098c751291f83f85fa21fcc6788a5389b08 Mon Sep 17 00:00:00 2001 From: Bas van Kervel Date: Wed, 28 Jun 2017 10:44:17 +0200 Subject: [PATCH] light: update txpool signer to EIP155 --- light/txpool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/light/txpool.go b/light/txpool.go index 7276874b8a..8094e1f134 100644 --- a/light/txpool.go +++ b/light/txpool.go @@ -80,7 +80,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),