Skip to content

Commit

Permalink
fix build issue in withdraw.rs
Browse files Browse the repository at this point in the history
Was just a string format issue. Stopped me from being able to build the 0.3.6 crate with `cargo install metaboss` though.
  • Loading branch information
jclmnop authored Feb 1, 2022
1 parent e5026d8 commit aab5d7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/withdraw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ pub fn withdraw(args: WithdrawArgs) -> Result<()> {
let sol = account.lamports as f64 / LAMPORTS_PER_SOL as f64;

println!(
"Withdrawing {sol} SOL from candy machine {}",
&candy_machine
"Withdrawing {} SOL from candy machine {}",
sol, &candy_machine
);
let sig = program
.request()
Expand Down

0 comments on commit aab5d7f

Please sign in to comment.