Skip to content

Commit

Permalink
display tx ids
Browse files Browse the repository at this point in the history
* added `\n` newline for some space between displayed txids
* useful and important for `--send-all`
  • Loading branch information
x100111010 committed Oct 27, 2024
1 parent 07fd91b commit 7a89be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/modules/send.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl Send {

tprintln!(ctx, "Send - {summary}");
tprintln!(ctx, "\nSending {} KAS to {address}, tx ids:", sompi_to_kaspa_string(amount_sompi));
// tprintln!(ctx, "{}\n", ids.into_iter().map(|a| a.to_string()).collect::<Vec<_>>().join("\n"));
tprintln!(ctx, "\n{}\n", _ids.into_iter().map(|a| a.to_string()).collect::<Vec<_>>().join("\n"));

Ok(())
}
Expand Down

0 comments on commit 7a89be5

Please sign in to comment.