Skip to content

Commit

Permalink
Merge pull request #69 from buffrr/normalize-space
Browse files Browse the repository at this point in the history
Normalize space name with `sell` command
  • Loading branch information
buffrr authored Jan 28, 2025
2 parents d03843b + 6e77eef commit b5f4e8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node/src/bin/space-cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,8 @@ async fn handle_commands(
}, cli.format
);
}
Commands::Sell { space, price, } => {
Commands::Sell { mut space, price, } => {
space = normalize_space(&space);
let result = cli
.client
.wallet_sell(
Expand Down

0 comments on commit b5f4e8e

Please sign in to comment.