Skip to content

Commit

Permalink
rusk-wallet: Change placeholder text
Browse files Browse the repository at this point in the history
  • Loading branch information
Daksh14 committed Sep 30, 2024
1 parent 517e4b1 commit b8efd78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rusk-wallet/src/bin/interactive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ pub(crate) async fn run_loop(

// display placeholders if not synced yet
if !is_synced {
moonlight_bal_str = String::from("XXX");
spendable_str = String::from("XXX");
total_str = String::from("XXX");
moonlight_bal_str = String::from("syncing...");
spendable_str = moonlight_bal_str.clone();
total_str = moonlight_bal_str.clone();
}

prompt::hide_cursor()?;
Expand Down

0 comments on commit b8efd78

Please sign in to comment.