Skip to content

Commit

Permalink
fix(polka-storage-provider-client): pretty print deal id (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
th7nder authored Nov 12, 2024
1 parent 8c01c3c commit 1b057f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/polka-storage-provider/client/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ impl Cli {
) -> Result<(), CliError> {
let client = PolkaStorageRpcClient::new(&rpc_server_url).await?;
let result = client.publish_deal(client_deal_proposal).await?;
println!("{}", result);
println!("Successfully published deal of id: {}", result);
Ok(())
}

Expand Down
2 changes: 1 addition & 1 deletion docs/src/getting-started/demo-file-store.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ All that's left is to [publish the deal](../storage-provider-cli/client/index.md
```bash
$ polka-storage-provider-client publish-deal --rpc-server-url "http://localhost:8000" @signed-logo-deal.json
0
Successfully published deal of id: 0
```
On Alice's side, that's it!

0 comments on commit 1b057f7

Please sign in to comment.