Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
magecnion committed Sep 12, 2024
1 parent 89eead2 commit a37221d
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions pallets/parachain-staking/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4886,14 +4886,7 @@ fn deferred_payment_steady_state_event_flow() {
let reset_issuance = || {
let new_issuance = Balances::total_issuance();
let diff = new_issuance - initial_issuance;
let burned = Balances::burn(diff);
Balances::settle(
&111,
burned,
WithdrawReasons::FEE,
ExistenceRequirement::AllowDeath,
)
.expect("Account can absorb burn");
let _ = Balances::burn(Some(111).into(), diff, false).expect("Account can absorb burn");
};

// fn to roll through the first RewardPaymentDelay rounds. returns new round index
Expand Down

0 comments on commit a37221d

Please sign in to comment.