Skip to content

Commit

Permalink
Merge pull request #70 from briansinw3b/main
Browse files Browse the repository at this point in the history
fix missing increasing phase id
  • Loading branch information
0xandee authored May 7, 2024
2 parents 0762b6e + 174805e commit 231ae42
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ mod ERC721OpenEdition {
self.ownable.assert_only_owner();
self.assert_allowed_flex_drop(flex_drop);
let current_phase_id = self.current_phase_id.read();
self.current_phase_id.write(current_phase_id + 1);

IFlexDropDispatcher { contract_address: flex_drop }
.start_new_phase_drop(current_phase_id, phase_detail, fee_recipient)
Expand Down

0 comments on commit 231ae42

Please sign in to comment.