Skip to content

Commit

Permalink
Fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
bkontur committed Nov 28, 2024
1 parent f32624c commit f7298e7
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions bridges/modules/relayers/src/extension/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,15 +320,8 @@ where
};

// we only boost priority if relayer has staked required balance
<<<<<<< HEAD
if !RelayersPallet::<R>::is_registration_active(who) {
return Ok(Default::default())
=======
if !RelayersPallet::<R, C::BridgeRelayersPalletInstance>::is_registration_active(
&data.relayer,
) {
return Ok((Default::default(), Some(data), origin))
>>>>>>> 9ec8009c (Multiple instances for pallet-bridge-relayers fix (#6684))
if !RelayersPallet::<R, C::BridgeRelayersPalletInstance>::is_registration_active(who) {
return Ok(Default::default());
}

// compute priority boost
Expand Down

0 comments on commit f7298e7

Please sign in to comment.