mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 21:31:02 +00:00
integrations-test: build_genesis_storage name fix (#2232)
Some legacy tests were mistakenly merged in #1256 for `emulated-integration-tests-common` crate. This PR fixes the function name `build_genesis_storage` (no need to use `legacy` suffix, even though the genesis is built from `RuntimeGenesisConfig`).
This commit is contained in:
committed by
GitHub
parent
b8acc57c50
commit
eabf9fb897
+2
-2
@@ -18,7 +18,7 @@ use sp_core::storage::Storage;
|
||||
|
||||
// Cumulus
|
||||
use emulated_integration_tests_common::{
|
||||
accounts, build_genesis_storage_legacy, collators, SAFE_XCM_VERSION,
|
||||
accounts, build_genesis_storage, collators, SAFE_XCM_VERSION,
|
||||
};
|
||||
use parachains_common::Balance;
|
||||
|
||||
@@ -63,7 +63,7 @@ pub fn genesis() -> Storage {
|
||||
..Default::default()
|
||||
};
|
||||
|
||||
build_genesis_storage_legacy(
|
||||
build_genesis_storage(
|
||||
&genesis_config,
|
||||
asset_hub_rococo_runtime::WASM_BINARY.expect("WASM binary was not built, please build it!"),
|
||||
)
|
||||
|
||||
+2
-2
@@ -18,7 +18,7 @@ use sp_core::storage::Storage;
|
||||
|
||||
// Cumulus
|
||||
use emulated_integration_tests_common::{
|
||||
accounts, build_genesis_storage_legacy, collators, SAFE_XCM_VERSION,
|
||||
accounts, build_genesis_storage, collators, SAFE_XCM_VERSION,
|
||||
};
|
||||
use parachains_common::Balance;
|
||||
|
||||
@@ -59,7 +59,7 @@ pub fn genesis() -> Storage {
|
||||
..Default::default()
|
||||
};
|
||||
|
||||
build_genesis_storage_legacy(
|
||||
build_genesis_storage(
|
||||
&genesis_config,
|
||||
asset_hub_westend_runtime::WASM_BINARY
|
||||
.expect("WASM binary was not built, please build it!"),
|
||||
|
||||
+2
-2
@@ -18,7 +18,7 @@ use sp_core::{sr25519, storage::Storage};
|
||||
|
||||
// Cumulus
|
||||
use emulated_integration_tests_common::{
|
||||
accounts, build_genesis_storage_legacy, collators, get_account_id_from_seed, SAFE_XCM_VERSION,
|
||||
accounts, build_genesis_storage, collators, get_account_id_from_seed, SAFE_XCM_VERSION,
|
||||
};
|
||||
use parachains_common::Balance;
|
||||
|
||||
@@ -75,7 +75,7 @@ pub fn genesis() -> Storage {
|
||||
..Default::default()
|
||||
};
|
||||
|
||||
build_genesis_storage_legacy(
|
||||
build_genesis_storage(
|
||||
&genesis_config,
|
||||
bridge_hub_rococo_runtime::WASM_BINARY
|
||||
.expect("WASM binary was not built, please build it!"),
|
||||
|
||||
+2
-2
@@ -18,7 +18,7 @@ use sp_core::{sr25519, storage::Storage};
|
||||
|
||||
// Cumulus
|
||||
use emulated_integration_tests_common::{
|
||||
accounts, build_genesis_storage_legacy, collators, get_account_id_from_seed, SAFE_XCM_VERSION,
|
||||
accounts, build_genesis_storage, collators, get_account_id_from_seed, SAFE_XCM_VERSION,
|
||||
};
|
||||
use parachains_common::Balance;
|
||||
|
||||
@@ -67,7 +67,7 @@ pub fn genesis() -> Storage {
|
||||
..Default::default()
|
||||
};
|
||||
|
||||
build_genesis_storage_legacy(
|
||||
build_genesis_storage(
|
||||
&genesis_config,
|
||||
bridge_hub_westend_runtime::WASM_BINARY
|
||||
.expect("WASM binary was not built, please build it!"),
|
||||
|
||||
+2
-2
@@ -18,7 +18,7 @@ use sp_core::{sr25519, storage::Storage};
|
||||
|
||||
// Cumulus
|
||||
use emulated_integration_tests_common::{
|
||||
accounts, build_genesis_storage_legacy, collators, get_account_id_from_seed, SAFE_XCM_VERSION,
|
||||
accounts, build_genesis_storage, collators, get_account_id_from_seed, SAFE_XCM_VERSION,
|
||||
};
|
||||
use parachains_common::Balance;
|
||||
|
||||
@@ -64,7 +64,7 @@ pub fn genesis(para_id: u32) -> Storage {
|
||||
..Default::default()
|
||||
};
|
||||
|
||||
build_genesis_storage_legacy(
|
||||
build_genesis_storage(
|
||||
&genesis_config,
|
||||
penpal_runtime::WASM_BINARY.expect("WASM binary was not built, please build it!"),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user