Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion runtime/src/slots.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ decl_event!(
/// Someone won the right to deploy a parachain. Balance amount is deducted for deposit.
WonDeploy(NewBidder<AccountId>, SlotRange, ParaId, Balance),
/// An existing parachain won the right to continue.
/// First balance is the extra amount reseved. Second is the total amount reserved.
WonRenewal(ParaId, SlotRange, Balance, Balance),
/// Funds were reserved for a winning bid. First balance is the extra amount reserved.
/// Second is the total.
Expand Down Expand Up @@ -552,7 +553,7 @@ impl<T: Trait> Module<T> {
} else {
Default::default()
};
Self::deposit_event(RawEvent::WonRenewal(para_id, range, amount, extra));
Self::deposit_event(RawEvent::WonRenewal(para_id, range, extra, amount));
}
}

Expand Down