Skip to content

Commit

Permalink
fix bug in loop
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelvanderwaal committed Jul 12, 2023
1 parent 49ad93c commit 93a3bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixed-price-sale/program/src/processor/buy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ impl<'info> Buy<'info> {
edition_marker_number
} else {
let mut edition_marker_number = 0u64;
let edition_marker_number_str = edition_marker_number.to_string();

loop {
let edition_marker_number_str = edition_marker_number.to_string();
let pda = Pubkey::find_program_address(
&[
"metadata".as_bytes(),
Expand Down

0 comments on commit 93a3bbf

Please sign in to comment.