Skip to content

Commit b5f4e8e

Browse files
authored
Merge pull request #69 from buffrr/normalize-space
Normalize space name with `sell` command
2 parents d03843b + 6e77eef commit b5f4e8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

node/src/bin/space-cli.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,8 @@ async fn handle_commands(
702702
}, cli.format
703703
);
704704
}
705-
Commands::Sell { space, price, } => {
705+
Commands::Sell { mut space, price, } => {
706+
space = normalize_space(&space);
706707
let result = cli
707708
.client
708709
.wallet_sell(

0 commit comments

Comments
 (0)