Skip to content

Commit

Permalink
fix evm signer tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinssgh committed Mar 25, 2024
1 parent 3e7fd99 commit c3c7654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zetaclient/evm/evm_signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ func (signer *Signer) EvmSigner() ethtypes.Signer {
func getEVMRPC(endpoint string) (interfaces.EVMRPCClient, ethtypes.Signer, error) {
if endpoint == stub.EVMRPCEnabled {
chainID := big.NewInt(common.BscMainnetChain().ChainId)
ethSigner := ethtypes.NewEIP155Signer(chainID)
ethSigner := ethtypes.NewLondonSigner(chainID)
client := &stub.MockEvmClient{}
return client, ethSigner, nil
}
Expand Down

0 comments on commit c3c7654

Please sign in to comment.