diff --git a/changelog.md b/changelog.md index dfacb0f1a4..0119174c74 100644 --- a/changelog.md +++ b/changelog.md @@ -23,6 +23,7 @@ * [1690](https://github.com/zeta-chain/node/issues/1690) - double watched gas prices and fix btc scheduler * [1687](https://github.com/zeta-chain/node/pull/1687) - only use EVM supported chains for gas stability pool * [1692](https://github.com/zeta-chain/node/pull/1692) - fix get params query for emissions module +* [1706](https://github.com/zeta-chain/node/pull/1706) - fix CLI crosschain show-out-tx-tracker * [1707](https://github.com/zeta-chain/node/issues/1707) - fix bitcoin fee rate estimation * [1712](https://github.com/zeta-chain/node/issues/1712) - increase EVM outtx inclusion timeout to 20 minutes * [1733](https://github.com/zeta-chain/node/pull/1733) - remove the unnecessary 2x multiplier in the convertGasToZeta RPC diff --git a/x/crosschain/client/cli/cli_out_tx_tracker.go b/x/crosschain/client/cli/cli_out_tx_tracker.go index 18dc21213f..109a07d52a 100644 --- a/x/crosschain/client/cli/cli_out_tx_tracker.go +++ b/x/crosschain/client/cli/cli_out_tx_tracker.go @@ -48,7 +48,7 @@ func CmdShowOutTxTracker() *cobra.Command { cmd := &cobra.Command{ Use: "show-out-tx-tracker [chainId] [nonce]", Short: "shows a OutTxTracker", - Args: cobra.ExactArgs(1), + Args: cobra.ExactArgs(2), RunE: func(cmd *cobra.Command, args []string) (err error) { clientCtx := client.GetClientContextFromCmd(cmd)