diff --git a/relay/paseo/src/genesis_config_presets.rs b/relay/paseo/src/genesis_config_presets.rs index 83c374b..5335d07 100644 --- a/relay/paseo/src/genesis_config_presets.rs +++ b/relay/paseo/src/genesis_config_presets.rs @@ -153,7 +153,7 @@ fn paseo_testnet_genesis( AuthorityDiscoveryId, BeefyId, )>, - _root_key: AccountId, + root_key: AccountId, endowed_accounts: Option>, ) -> serde_json::Value { let endowed_accounts: Vec = endowed_accounts.unwrap_or_else(testnet_accounts); @@ -195,6 +195,9 @@ fn paseo_testnet_genesis( "forceEra": Forcing::NotForcing, "slashRewardFraction": Perbill::from_percent(10), }, + "sudo": { + "key": Some(root_key), + }, "babe": { "epochConfig": Some(BABE_GENESIS_EPOCH_CONFIG), },