forked from cerc-io/plugeth
accounts/abi/bind/backends: use EIP155 on the simulated chain
This commit is contained in:
parent
cf47ee5339
commit
38c914be64
@ -316,7 +316,7 @@ func (b *SimulatedBackend) SendTransaction(ctx context.Context, tx *types.Transa
|
|||||||
b.mu.Lock()
|
b.mu.Lock()
|
||||||
defer b.mu.Unlock()
|
defer b.mu.Unlock()
|
||||||
|
|
||||||
sender, err := types.Sender(types.HomesteadSigner{}, tx)
|
sender, err := types.Sender(types.NewEIP155Signer(b.config.ChainID), tx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(fmt.Errorf("invalid transaction: %v", err))
|
panic(fmt.Errorf("invalid transaction: %v", err))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user