Skip to content

Commit

Permalink
Update from franciscoaguirre running command 'fmt'
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 29, 2024
1 parent b3967c7 commit 9527b5b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions polkadot/xcm/src/v5/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1353,8 +1353,11 @@ impl<Call> TryFrom<OldInstruction<Call>> for Instruction<Call> {
HrmpChannelAccepted { recipient } => Self::HrmpChannelAccepted { recipient },
HrmpChannelClosing { initiator, sender, recipient } =>
Self::HrmpChannelClosing { initiator, sender, recipient },
Transact { origin_kind, require_weight_at_most, call } =>
Self::Transact { origin_kind, call: call.into(), fallback_max_weight: Some(require_weight_at_most) },
Transact { origin_kind, require_weight_at_most, call } => Self::Transact {
origin_kind,
call: call.into(),
fallback_max_weight: Some(require_weight_at_most),
},
ReportError(response_info) => Self::ReportError(QueryResponseInfo {
query_id: response_info.query_id,
destination: response_info.destination.try_into().map_err(|_| ())?,
Expand Down

0 comments on commit 9527b5b

Please sign in to comment.