mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 20:47:56 +00:00
Update Substrate & Polkadot (#359)
* Update Substrate & Polkadot * Remove unused code
This commit is contained in:
@@ -105,19 +105,19 @@ fn testnet_genesis(
|
||||
endowed_accounts: Vec<AccountId>,
|
||||
) -> cumulus_test_runtime::GenesisConfig {
|
||||
cumulus_test_runtime::GenesisConfig {
|
||||
frame_system: Some(cumulus_test_runtime::SystemConfig {
|
||||
frame_system: cumulus_test_runtime::SystemConfig {
|
||||
code: cumulus_test_runtime::WASM_BINARY
|
||||
.expect("WASM binary was not build, please build it!")
|
||||
.to_vec(),
|
||||
..Default::default()
|
||||
}),
|
||||
pallet_balances: Some(cumulus_test_runtime::BalancesConfig {
|
||||
},
|
||||
pallet_balances: cumulus_test_runtime::BalancesConfig {
|
||||
balances: endowed_accounts
|
||||
.iter()
|
||||
.cloned()
|
||||
.map(|k| (k, 1 << 60))
|
||||
.collect(),
|
||||
}),
|
||||
pallet_sudo: Some(cumulus_test_runtime::SudoConfig { key: root_key }),
|
||||
},
|
||||
pallet_sudo: cumulus_test_runtime::SudoConfig { key: root_key },
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user