|
20 | 20 |
|
21 | 21 | use local_runtime::{
|
22 | 22 | wasm_binary_unwrap, AccountId, AuraConfig, AuraId, BalancesConfig,
|
23 |
| - CommunityCouncilMembershipConfig, CouncilMembershipConfig, DappStakingConfig, EVMConfig, |
24 |
| - GrandpaConfig, GrandpaId, InflationConfig, InflationParameters, Precompiles, |
25 |
| - RuntimeGenesisConfig, Signature, SudoConfig, TechnicalCommitteeMembershipConfig, TierThreshold, |
26 |
| - VestingConfig, AST, |
| 23 | + CommunityCouncilMembershipConfig, CommunityTreasuryPalletId, CouncilMembershipConfig, |
| 24 | + DappStakingConfig, EVMConfig, GrandpaConfig, GrandpaId, InflationConfig, InflationParameters, |
| 25 | + Precompiles, RuntimeGenesisConfig, Signature, SudoConfig, TechnicalCommitteeMembershipConfig, |
| 26 | + TierThreshold, TreasuryPalletId, VestingConfig, AST, |
27 | 27 | };
|
28 | 28 | use sc_service::ChainType;
|
29 | 29 | use sp_core::{crypto::Ss58Codec, sr25519, Pair, Public};
|
@@ -77,6 +77,8 @@ pub fn development_config() -> ChainSpec {
|
77 | 77 | get_account_id_from_seed::<sr25519::Public>("Charlie"),
|
78 | 78 | get_account_id_from_seed::<sr25519::Public>("Eve"),
|
79 | 79 | get_account_id_from_seed::<sr25519::Public>("Ferdie"),
|
| 80 | + TreasuryPalletId::get().into_account_truncating(), |
| 81 | + CommunityTreasuryPalletId::get().into_account_truncating(), |
80 | 82 | // Arrakis.TEST account in MetaMask
|
81 | 83 | // Import known test account with private key
|
82 | 84 | // 0x01ab6e801c06e59ca97a14fc0a1978b27fa366fc87450e0b65459dd3515b7391
|
@@ -210,6 +212,7 @@ fn testnet_genesis(
|
210 | 212 | treasury: Default::default(),
|
211 | 213 | community_treasury: Default::default(),
|
212 | 214 | };
|
| 215 | + |
213 | 216 | serde_json::to_value(&config).expect("Could not build genesis config.")
|
214 | 217 | }
|
215 | 218 |
|
|
0 commit comments