Skip to content

Commit

Permalink
fix(system-parachains/bridge-hub-kusama): missing imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pandres95 committed Oct 23, 2024
1 parent f7003d1 commit b574665
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion system-parachains/bridge-hubs/bridge-hub-kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,9 @@ construct_runtime!(
}
);

#[cfg(feature = "runtime-benchmarks")]
use pallet_bridge_messages::LaneIdOf;

#[cfg(feature = "runtime-benchmarks")]
mod benches {
frame_benchmarking::define_benchmarks!(
Expand Down Expand Up @@ -1195,7 +1198,7 @@ impl_runtime_apis! {
let rewards_account = bp_relayers::PayRewardFromAccount::<
Balances,
AccountId,
LegacyLaneId,
bp_messages::LegacyLaneId,
>::rewards_account(account_params);
Self::deposit_account(rewards_account, reward);
}
Expand Down

0 comments on commit b574665

Please sign in to comment.