Skip to content

Commit

Permalink
Fix for smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
yrong committed Oct 5, 2023
1 parent 3c7bd12 commit 28e108b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parachains/runtimes/bridge-hubs/bridge-hub-rococo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ use frame_support::{
construct_runtime,
dispatch::DispatchClass,
parameter_types,
traits::{ConstBool, ConstU32, ConstU64, ConstU8, ConstU128, Everything},
traits::{ConstBool, ConstU128, ConstU32, ConstU64, ConstU8, Everything},
weights::{ConstantMultiplier, Weight},
PalletId,
};
Expand Down Expand Up @@ -699,7 +699,7 @@ impl snowbridge_control::Config for Runtime {
type ChannelOrigin = EnsureXcm<xcm_config::AllowSiblingsOnly>;
type TreasuryAccount = TreasuryAccount;
type SovereignAccountOf = xcm_config::SovereignAccountOf;
type Fee = ConstU128<10>;
type Fee = ConstU128<100000000000>; //should be enough to cover the existentialDeposit
type Token = Balances;
type WeightInfo = weights::snowbridge_control::WeightInfo<Runtime>;
}
Expand Down

0 comments on commit 28e108b

Please sign in to comment.