File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ pub const NANO_NODL: Balance = MICRO_NODL / 1_000;
3838
3939pub const EXISTENTIAL_DEPOSIT : Balance = 100 * NANO_NODL ;
4040pub const POLKADOT_EXISTENTIAL_DEPOSIT : Balance = 10_000_000_000 ;
41+ pub const POLKADOT_CENT : Balance = 100_000_000 ;
4142
4243pub const fn deposit ( items : u32 , bytes : u32 ) -> Balance {
4344 items as Balance * 1_500 * MICRO_NODL + ( bytes as Balance ) * 600 * MICRO_NODL
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ parameter_types! {
194194 /// The asset ID for the asset that we use to pay for message delivery fees.
195195 pub FeeAssetId : AssetId = Concrete ( NodlLocation :: get( ) ) ;
196196 /// The base fee for the message delivery fees.
197- pub const BaseDeliveryFee : u128 = crate :: constants:: NODL . saturating_mul( 3 ) ;
197+ pub const BaseDeliveryFee : u128 = crate :: constants:: POLKADOT_CENT . saturating_mul( 3 ) ;
198198}
199199
200200pub type PriceForSiblingParachainDelivery =
You can’t perform that action at this time.
0 commit comments