Fix init-bridge (#1900)

This commit is contained in:
Serban Iorga
2023-02-23 08:17:07 +02:00
committed by Bastian Köcher
parent 26330d9a25
commit e7debc4b09
4 changed files with 12 additions and 11 deletions
+1 -1
View File
@@ -181,7 +181,7 @@ pub mod pallet {
let is_authorities_change_enacted =
try_enact_authority_change::<T, I>(&finality_target, set_id)?;
let may_refund_call_fee = is_authorities_change_enacted &&
submit_finality_proof_info_from_args::<T, I>(&*finality_target, &justification)
submit_finality_proof_info_from_args::<T, I>(&finality_target, &justification)
.fits_limits();
<RequestCount<T, I>>::mutate(|count| *count += 1);
insert_header::<T, I>(*finality_target, hash);