Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/cli/subcommands/healthcheck_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/rpc/methods/eth/filter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/wallet/subcommands/wallet_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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())]
Expand Down
Loading