good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 38c914be authored by Péter Szilágyi's avatar Péter Szilágyi
Browse files

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

parent cf47ee53
No related branches found
No related tags found
No related merge requests found
......@@ -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))
}
......
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