Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dimartiro committed Dec 24, 2024
1 parent 5b59a70 commit 523f47a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions solo-chains/node/tanssi-relay-service/src/dev_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,13 +398,13 @@ where
);
let collator_signature = collator_pair.sign(&payload);

let mut upm_messages = UpwardMessages::new();
let mut ump_messages = UpwardMessages::new();

if let Some(upm_message) = client
if let Some(ump_message) = client
.get_aux(XMC_UPM_SELECTOR_AUX_KEY)
.expect("Should be able to query aux storage; qed")
{
upm_messages.force_push(upm_message);
ump_messages.force_push(ump_message);
}

// generate a candidate with most of the values mocked
Expand All @@ -421,7 +421,7 @@ where
validation_code_hash,
},
commitments: CandidateCommitments::<u32> {
upward_messages: upm_messages,
upward_messages: ump_messages,
horizontal_messages: Default::default(),
new_validation_code: None,
head_data: parachain_mocked_header.clone().encode().into(),
Expand Down

0 comments on commit 523f47a

Please sign in to comment.