Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Tidy up
  • Loading branch information
seadanda committed Feb 27, 2024
commit a7f926a27e2f4eb83aeafc5fd4f6e38c63dc0279
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,12 @@ publish = false
[dependencies]
serde_json = "1.0.104"

# Substrate
sp-core = { path = "../../../../../../../../substrate/primitives/core", default-features = false }
sp-runtime = { path = "../../../../../../../../substrate/primitives/runtime", default-features = false }
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }

# Polakadot
parachains-common = { path = "../../../../../../../parachains/common" }

# Cumulus
cumulus-primitives-core = { path = "../../../../../../../primitives/core", default-features = false }
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
coretime-rococo-runtime = { path = "../../../../../../runtimes/coretime/coretime-rococo" }
rococo-emulated-chain = { path = "../../../relays/rococo" }
testnet-parachains-constants = { path = "../../../../../../runtimes/constants", features = ["rococo"] }
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use emulated_integration_tests_common::{build_genesis_storage, collators, SAFE_X
use parachains_common::Balance;

pub const PARA_ID: u32 = 1005;
pub const ED: Balance = parachains_common::rococo::currency::EXISTENTIAL_DEPOSIT;
pub const ED: Balance = testnet_parachains_constants::rococo::currency::EXISTENTIAL_DEPOSIT;

pub fn genesis() -> Storage {
let genesis_config = RuntimeGenesisConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ use coretime_rococo_runtime::{
xcm_config::LocationToAccountId, AuraExt, Balances, Broker, ParachainInfo, PolkadotXcm,
XcmpQueue,
};
use cumulus_primitives_core::AggregateMessageOrigin;
use emulated_integration_tests_common::{
impl_accounts_helpers_for_parachain, impl_assert_events_helpers_for_parachain,
impls::Parachain, xcm_emulator::decl_test_parachains,
impl_xcm_helpers_for_parachain, impls::Parachain, xcm_emulator::decl_test_parachains,
};

decl_test_parachains! {
Expand All @@ -39,6 +40,7 @@ decl_test_parachains! {
XcmpMessageHandler: XcmpQueue,
LocationToAccountId: LocationToAccountId,
ParachainInfo: ParachainInfo,
MessageOrigin: AggregateMessageOrigin,
},
pallets = {
PolkadotXcm: PolkadotXcm,
Expand All @@ -50,3 +52,4 @@ decl_test_parachains! {

impl_accounts_helpers_for_parachain!(CoretimeRococo);
impl_assert_events_helpers_for_parachain!(CoretimeRococo);
impl_xcm_helpers_for_parachain!(CoretimeRococo);
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,10 @@ publish = false
[dependencies]
serde_json = "1.0.104"

# Substrate
sp-core = { path = "../../../../../../../../substrate/primitives/core", default-features = false }
sp-runtime = { path = "../../../../../../../../substrate/primitives/runtime", default-features = false }
frame-support = { path = "../../../../../../../../substrate/frame/support", default-features = false }

# Polakadot
parachains-common = { path = "../../../../../../../parachains/common" }

# Cumulus
cumulus-primitives-core = { path = "../../../../../../../primitives/core", default-features = false }
emulated-integration-tests-common = { path = "../../../../common", default-features = false }
coretime-westend-runtime = { path = "../../../../../../runtimes/coretime/coretime-westend" }
Expand Down