From 96ecce60e4c43cf12a908da401f54b0b9c083bbd Mon Sep 17 00:00:00 2001 From: Alex Sharov <AskAlexSharov@gmail.com> Date: Mon, 28 Jun 2021 18:36:07 +0700 Subject: [PATCH] ChainID alias for ChainId (#2248) --- cmd/rpcdaemon/commands/eth_system.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmd/rpcdaemon/commands/eth_system.go b/cmd/rpcdaemon/commands/eth_system.go index d743953aae..9b80940eb2 100644 --- a/cmd/rpcdaemon/commands/eth_system.go +++ b/cmd/rpcdaemon/commands/eth_system.go @@ -72,6 +72,11 @@ func (api *APIImpl) ChainId(ctx context.Context) (hexutil.Uint64, error) { return hexutil.Uint64(chainConfig.ChainID.Uint64()), nil } +// ChainID alias of ChainId - just for convenience +func (api *APIImpl) ChainID(ctx context.Context) (hexutil.Uint64, error) { + return api.ChainId(ctx) +} + // ProtocolVersion implements eth_protocolVersion. Returns the current ethereum protocol version. func (api *APIImpl) ProtocolVersion(ctx context.Context) (hexutil.Uint, error) { ver, err := api.ethBackend.ProtocolVersion(ctx) -- GitLab