rpc: fix default signer (#769)

* rpc: fix default signer

* changelog
This commit is contained in:
Federico Kunze Küllmer
2021-11-22 16:39:25 +01:00
committed by GitHub
parent 93020f8786
commit be8fd869ff
2 changed files with 14 additions and 3 deletions
+8 -3
View File
@@ -56,7 +56,7 @@ func NewPublicAPI(
backend backend.Backend,
nonceLock *rpctypes.AddrLocker,
) *PublicAPI {
epoch, err := ethermint.ParseChainID(clientCtx.ChainID)
eip155ChainID, err := ethermint.ParseChainID(clientCtx.ChainID)
if err != nil {
panic(err)
}
@@ -80,13 +80,18 @@ func NewPublicAPI(
// The signer used by the API should always be the 'latest' known one because we expect
// signers to be backwards-compatible with old transactions.
signer := ethtypes.LatestSigner(backend.ChainConfig())
cfg := backend.ChainConfig()
if cfg == nil {
cfg = evmtypes.DefaultChainConfig().EthereumConfig(eip155ChainID)
}
signer := ethtypes.LatestSigner(cfg)
api := &PublicAPI{
ctx: context.Background(),
clientCtx: clientCtx,
queryClient: rpctypes.NewQueryClient(clientCtx),
chainIDEpoch: epoch,
chainIDEpoch: eip155ChainID,
logger: logger.With("client", "json-rpc"),
backend: backend,
nonceLock: nonceLock,