From 2230c1c8c690f3ace00323adb22a74aaa975893b Mon Sep 17 00:00:00 2001 From: skosito Date: Wed, 21 Feb 2024 19:44:51 +0100 Subject: [PATCH] Fix build --- changelog.md | 1 + cmd/zetaclientd/debug.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 72e28c4550..783834761a 100644 --- a/changelog.md +++ b/changelog.md @@ -21,6 +21,7 @@ * [1630](https://github.com/zeta-chain/node/pull/1630) added password prompts for hotkey and tss keyshare in zetaclient Starting zetaclient now requires two passwords to be input; one for the hotkey and another for the tss key-share. * [1760](https://github.com/zeta-chain/node/pull/1760) - Make staking keeper private in crosschain module +* [1774](https://github.com/zeta-chain/node/pull/1774) - split params and config in zetaclient ### Fixes diff --git a/cmd/zetaclientd/debug.go b/cmd/zetaclientd/debug.go index 0117dfbee4..8b34806bd0 100644 --- a/cmd/zetaclientd/debug.go +++ b/cmd/zetaclientd/debug.go @@ -132,7 +132,7 @@ func DebugCmd() *cobra.Command { }) evmChainParams, found := coreContext.GetEVMChainParams(chainID) if !found { - return fmt.Errorf("missing chain params for chain %s", chainID) + return fmt.Errorf("missing chain params for chain %d", chainID) } evmChainParams.ZetaTokenContractAddress = chainParams.ZetaTokenContractAddress if strings.EqualFold(tx.To().Hex(), chainParams.ConnectorContractAddress) {