Skip to content
Merged
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,13 @@

### Removed

- [#6010](https://github.com/ChainSafe/forest/pull/6010) Removed the deprecated `forest-cli send` subcommand. Use `forest-wallet send` instead.

Comment thread
LesnyRumcajs marked this conversation as resolved.
- [#6014](https://github.com/ChainSafe/forest/pull/6014) Removed `--unordered` from `forest-cli snapshot export`.

- [#6014](https://github.com/ChainSafe/forest/pull/6014) Removed `unordered-graph-traversal` from `forest-tool benchmark`.


### Fixed

## Forest v0.29.0 "Fëanor"
Expand Down
1 change: 0 additions & 1 deletion src/cli/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ where
Subcommand::Mpool(cmd) => cmd.run(client).await,
Subcommand::State(cmd) => cmd.run(client).await,
Subcommand::Config(cmd) => cmd.run(&mut std::io::stdout()),
Subcommand::Send(cmd) => cmd.run(client).await,
Subcommand::Info(cmd) => cmd.run(client).await,
Subcommand::Snapshot(cmd) => cmd.run(client).await,
Subcommand::Shutdown(cmd) => cmd.run(client).await,
Expand Down
9 changes: 2 additions & 7 deletions src/cli/subcommands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ mod healthcheck_cmd;
mod info_cmd;
mod mpool_cmd;
mod net_cmd;
pub(crate) mod send_cmd;
mod shutdown_cmd;
mod snapshot_cmd;
mod state_cmd;
Expand All @@ -31,9 +30,8 @@ use tracing::error;
pub(super) use self::{
auth_cmd::AuthCommands, chain_cmd::ChainCommands, config_cmd::ConfigCommands,
f3_cmd::F3Commands, healthcheck_cmd::HealthcheckCommand, mpool_cmd::MpoolCommands,
net_cmd::NetCommands, send_cmd::SendCommand, shutdown_cmd::ShutdownCommand,
snapshot_cmd::SnapshotCommands, state_cmd::StateCommands, sync_cmd::SyncCommands,
wait_api_cmd::WaitApiCommand,
net_cmd::NetCommands, shutdown_cmd::ShutdownCommand, snapshot_cmd::SnapshotCommands,
state_cmd::StateCommands, sync_cmd::SyncCommands, wait_api_cmd::WaitApiCommand,
Comment thread
LesnyRumcajs marked this conversation as resolved.
};
use crate::cli::subcommands::info_cmd::InfoCommand;

Expand Down Expand Up @@ -85,9 +83,6 @@ pub enum Subcommand {
#[command(subcommand)]
Snapshot(SnapshotCommands),

/// Send funds between accounts
Send(SendCommand),

/// Print node info
#[command(subcommand)]
Info(InfoCommand),
Expand Down
65 changes: 0 additions & 65 deletions src/cli/subcommands/send_cmd.rs

This file was deleted.

Loading