Commit f19aee3 1 parent 32e5753 commit f19aee3 Copy full SHA for f19aee3
File tree 3 files changed +3
-6
lines changed
system-parachains/asset-hubs/asset-hub-kusama/src
3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ impl pallet_mmr::Config for Runtime {
386
386
type LeafData = pallet_beefy_mmr:: Pallet < Runtime > ;
387
387
type BlockHashProvider = pallet_mmr:: DefaultBlockHashProvider < Runtime > ;
388
388
#[ cfg( feature = "runtime-benchmarks" ) ]
389
- type BenchmarkHelper = ( ) ;
389
+ type BenchmarkHelper = parachains_paras :: benchmarking :: mmr_setup :: MmrSetup < Runtime > ;
390
390
}
391
391
392
392
/// MMR helper types.
Original file line number Diff line number Diff line change @@ -373,7 +373,7 @@ impl pallet_mmr::Config for Runtime {
373
373
type LeafData = pallet_beefy_mmr:: Pallet < Runtime > ;
374
374
type BlockHashProvider = pallet_mmr:: DefaultBlockHashProvider < Runtime > ;
375
375
#[ cfg( feature = "runtime-benchmarks" ) ]
376
- type BenchmarkHelper = ( ) ;
376
+ type BenchmarkHelper = parachains_paras :: benchmarking :: mmr_setup :: MmrSetup < Runtime > ;
377
377
}
378
378
379
379
/// MMR helper types.
Original file line number Diff line number Diff line change @@ -513,19 +513,16 @@ pub mod bridging {
513
513
]
514
514
) ;
515
515
516
- // TODO: @bkontur or @acatangiu, please confirm if this chain will be used at all.
517
516
pub const PolkadotNetwork : NetworkId = NetworkId :: Polkadot ;
518
517
pub const EthereumNetwork : NetworkId = NetworkId :: Ethereum { chain_id: 1 } ;
519
- // TODO: @bkontur or @acatangiu, please confirm if this should be in the configuration, or if
520
- // this `chain_id` is just for testing purposes.
521
518
pub EthereumEcosystem : Location = Location :: new( 2 , [ GlobalConsensus ( EthereumNetwork :: get( ) ) ] ) ;
522
519
pub DotLocation : Location = Location :: new( 2 , [ GlobalConsensus ( PolkadotNetwork :: get( ) ) ] ) ;
523
520
pub AssetHubPolkadot : Location = Location :: new(
524
521
2 ,
525
522
[
526
523
GlobalConsensus ( PolkadotNetwork :: get( ) ) ,
527
524
Parachain ( polkadot_runtime_constants:: system_parachain:: ASSET_HUB_ID ) ,
528
- ] ,
525
+ ] ,
529
526
) ;
530
527
531
528
/// Set up exporters configuration.
You can’t perform that action at this time.
0 commit comments