Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
1xstj committed Oct 24, 2023
1 parent 47d06fa commit 4cec5cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pallets/dkg-proposal-handler/src/impls.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use super::*;
use sp_std::vec;

impl<T: Config> ProposalHandlerTrait for Pallet<T> {
type BatchId = T::BatchId;
Expand Down Expand Up @@ -87,7 +88,8 @@ impl<T: Config> ProposalHandlerTrait for Pallet<T> {
for proposal in prop.proposals.clone().into_iter() {
if let ProposalKind::Refresh = proposal.kind() {
let mut batch_ids_to_remove: Vec<<T as Config>::BatchId> = vec![];
for (typed_chain_id, batch_id, unsigned_batch) in UnsignedProposalQueue::<T>::iter()
for (_typed_chain_id, batch_id, unsigned_batch) in
UnsignedProposalQueue::<T>::iter()
{
for proposal in unsigned_batch.proposals {
if let ProposalKind::Refresh = proposal.proposal.kind() {
Expand Down

0 comments on commit 4cec5cf

Please sign in to comment.