Skip to content

Commit

Permalink
Update printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
raychu86 committed Jun 15, 2023
1 parent 6fcd28f commit 8822ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/commands/developer/transfer_private.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ impl TransferPrivate {
vm.execute(&private_key, ("credits.aleo", "transfer_private"), inputs.iter(), Some(fee), Some(query), rng)?
};
let locator = Locator::<CurrentNetwork>::from_str("credits.aleo/transfer_private")?;
println!("✅ Created private transfer of {} microcredits to {}...\n", &self.amount, self.recipient);
println!("✅ Created private transfer of {} microcredits to {}\n", &self.amount, self.recipient);

// Determine if the transaction should be broadcast, stored, or displayed to user.
Developer::handle_transaction(self.broadcast, self.display, self.store, execution, locator.to_string())
Expand Down

0 comments on commit 8822ef6

Please sign in to comment.