accounts/abi/bind/backends: use EIP155 on the simulated chain

This commit is contained in:
Péter Szilágyi 2019-06-18 11:49:30 +03:00
parent cf47ee5339
commit 38c914be64
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D

View File

@ -316,7 +316,7 @@ func (b *SimulatedBackend) SendTransaction(ctx context.Context, tx *types.Transa
b.mu.Lock()
defer b.mu.Unlock()
sender, err := types.Sender(types.HomesteadSigner{}, tx)
sender, err := types.Sender(types.NewEIP155Signer(b.config.ChainID), tx)
if err != nil {
panic(fmt.Errorf("invalid transaction: %v", err))
}