From a4d2b34e2ad5b5c41941c5463c63e293986101f1 Mon Sep 17 00:00:00 2001 From: 0xDevNinja Date: Fri, 7 Aug 2026 15:52:13 +0530 Subject: [PATCH 1/3] docs(cli): correct wallet send --gas-limit unit in help The --gas-limit help said "In milliGas", but the value is passed straight into Message.gas_limit, which is a count of gas units, with no milligas conversion on the path. A user trusting the help would set a limit 1000x too small. Describe it as gas units and note that 0 lets the node estimate it. --- src/wallet/subcommands/wallet_cmd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/subcommands/wallet_cmd.rs b/src/wallet/subcommands/wallet_cmd.rs index af4db89cc62..f253e573a35 100644 --- a/src/wallet/subcommands/wallet_cmd.rs +++ b/src/wallet/subcommands/wallet_cmd.rs @@ -306,7 +306,7 @@ pub enum WalletCommands { amount: TokenAmount, #[arg(long, value_parser = humantoken::parse, default_value_t = TokenAmount::zero())] gas_feecap: TokenAmount, - /// In milliGas + /// The gas limit in gas units. `0` lets the node estimate it. #[arg(long, default_value_t = 0)] gas_limit: i64, #[arg(long, value_parser = humantoken::parse, default_value_t = TokenAmount::zero())] From b12b358fa7071a0ebfc32ff60b64725019b0e6a6 Mon Sep 17 00:00:00 2001 From: 0xDevNinja Date: Fri, 7 Aug 2026 15:52:13 +0530 Subject: [PATCH 2/3] docs(cli): fix copy-pasted --wait help for healthcheck live/healthy The --wait help for the `live` and `healthy` subcommands both read "Don't exit until node is ready", copied from `ready`, even though they poll the livez and healthz endpoints respectively. Point each help string at the probe the command actually waits on. --- src/cli/subcommands/healthcheck_cmd.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/subcommands/healthcheck_cmd.rs b/src/cli/subcommands/healthcheck_cmd.rs index 4439db1f69f..03f50d3c782 100644 --- a/src/cli/subcommands/healthcheck_cmd.rs +++ b/src/cli/subcommands/healthcheck_cmd.rs @@ -24,7 +24,7 @@ pub enum HealthcheckCommand { }, /// Display liveness status Live { - /// Don't exit until node is ready + /// Don't exit until node is live #[arg(long)] wait: bool, /// Healthcheck port @@ -33,7 +33,7 @@ pub enum HealthcheckCommand { }, /// Display health status Healthy { - /// Don't exit until node is ready + /// Don't exit until node is healthy #[arg(long)] wait: bool, /// Healthcheck port From ee0be65e0f41b45fced72ba42db283a4d3448854 Mon Sep 17 00:00:00 2001 From: 0xDevNinja Date: Fri, 7 Aug 2026 15:52:13 +0530 Subject: [PATCH 3/3] docs(rpc): fix garbled collect_events_from_messages doc comment The last line of the doc comment was mangled into non-text ("wages sthen the executed messill need to be loaded"). Restore the intended sentence. --- src/rpc/methods/eth/filter/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/methods/eth/filter/mod.rs b/src/rpc/methods/eth/filter/mod.rs index f780e99bca5..038f30ad78f 100644 --- a/src/rpc/methods/eth/filter/mod.rs +++ b/src/rpc/methods/eth/filter/mod.rs @@ -414,7 +414,7 @@ impl EthEventHandler { /// Collects the tipset's events from already-loaded executed messages, keeping those that /// match `spec` and tagging each with `revert_status`. Use [`Self::collect_events`] instead - /// wages sthen the executed messill need to be loaded. + /// when the executed messages still need to be loaded. pub async fn collect_events_from_messages( state_manager: &StateManager, tipset: &Tipset,