Skip to content

Commit 6e77eef

Browse files
committed
Normalize space name with sell command
1 parent 777756f commit 6e77eef

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)