We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fff8d54 commit 066514aCopy full SHA for 066514a
node/src/chain_spec/devnet.rs
@@ -23,7 +23,7 @@ pub fn devnet_config() -> Result<ChainSpec, String> {
23
.with_protocol_id("bittensor")
24
.with_id("bittensor")
25
.with_chain_type(ChainType::Development)
26
- .with_genesis_config_patch(testnet_genesis(
+ .with_genesis_config_patch(devnet_genesis(
27
// Initial PoA authorities (Validators)
28
// aura | grandpa
29
vec![
@@ -68,7 +68,7 @@ pub fn devnet_config() -> Result<ChainSpec, String> {
68
69
// Configure initial storage state for FRAME modules.
70
#[allow(clippy::too_many_arguments)]
71
-fn testnet_genesis(
+fn devnet_genesis(
72
initial_authorities: Vec<(AuraId, GrandpaId)>,
73
root_key: AccountId,
74
_endowed_accounts: Vec<AccountId>,
0 commit comments