Merge pull request #19732 from karalabe/simulated-eip155

accounts/abi/bind/backends: use EIP155 on the simulated chain
This commit is contained in:
Péter Szilágyi 2019-06-18 12:14:00 +03:00 committed by GitHub
commit 96f8be36ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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))
}