Skip to content

Commit e5f87c0

Browse files
Staging preview fixes (#163)
* feat: remove --raw * fix: staging initial authorities --------- Co-authored-by: Skylar Simoncelli <[email protected]>
1 parent 410c659 commit e5f87c0

File tree

2 files changed

+4
-22
lines changed

2 files changed

+4
-22
lines changed

.github/actions/artifacts/generate-chain-specs/action.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ runs:
1818
run: |
1919
chmod +x partner-chains-node-${{ inputs.tag }}-x86_64-linux
2020
source ./envs/devnet/.envrc
21-
./partner-chains-node-${{ inputs.tag }}-x86_64-linux build-spec --chain local --disable-default-bootnode --raw > devnet_chain_spec.json
21+
./partner-chains-node-${{ inputs.tag }}-x86_64-linux build-spec --chain local --disable-default-bootnode > devnet_chain_spec.json
2222
source ./envs/staging-preview/.envrc
23-
./partner-chains-node-${{ inputs.tag }}-x86_64-linux build-spec --chain staging --disable-default-bootnode --raw > staging_preview_chain_spec.json
23+
./partner-chains-node-${{ inputs.tag }}-x86_64-linux build-spec --chain staging --disable-default-bootnode > staging_preview_chain_spec.json
2424
source ./envs/staging-preprod/.envrc
25-
./partner-chains-node-${{ inputs.tag }}-x86_64-linux build-spec --chain staging --disable-default-bootnode --raw > staging_preprod_chain_spec.json
25+
./partner-chains-node-${{ inputs.tag }}-x86_64-linux build-spec --chain staging --disable-default-bootnode > staging_preprod_chain_spec.json
2626
- name: Upload Chain Specs
2727
uses: actions/upload-artifact@v4
2828
with:
2929
name: chain-specs
3030
path: |
3131
devnet_chain_spec.json
3232
staging_preview_chain_spec.json
33-
staging_preprod_chain_spec.json
33+
staging_preprod_chain_spec.json

node/src/staging.rs

-18
Original file line numberDiff line numberDiff line change
@@ -52,24 +52,6 @@ pub fn staging_initial_authorities() -> Vec<AuthorityKeys> {
5252
"0x34b71fdad96431bf115350d8ad21eec07a2b154ff32dc31125f988e308bebea8",
5353
"0x025e19f82c5e2bac5e8869d49ff26359e442628bc5cfa38eeb5275f43d04015da8",
5454
),
55-
// validator-5
56-
authority_keys(
57-
"0x500d7ff6d903c85db5ee5624df9510c2a085cf30da260166bd370010d0bdc97a",
58-
"0xa04d74c1539550876d04e4d2de4e0531087c3b6810ce96ddc16d78ccf4ac4f11",
59-
"0x03f38a062a4b372c045c1dddc4fe98a2c9cb1d6eec8bf02f973fd29b1096cd8155",
60-
),
61-
// validator-6
62-
authority_keys(
63-
"0xc2a8354c3928ffacf21eb8b2c3e6bceda9d54b0e2ce10f48fe8b9afafb7d8a3a",
64-
"0x82e56b009c755e4f8a4dcb2ff22d1e6b98d984b4df02d83a75157335222b218b",
65-
"0x033d3a2e581821fdd222581f6015eaabc798dd4dc0f7eeb3d6630b84449d76c9c9",
66-
),
67-
// validator-7
68-
authority_keys(
69-
"0x22c9f9d51022b7ad2204131e6268ab079c84bcdb44a4c6907affed5779da9c7b",
70-
"0x5d100e44ecd41aeb0292d17bdefb99ebfc879682a1cd8b489ed0a66d3ee0b391",
71-
"0x0232ebed4c0c742fa951b471fe6f6f2f09a2d235bf7e9992fbf786cf032c97247e",
72-
),
7355
]
7456
}
7557
pub fn staging_endowed_accounts() -> Vec<AccountId> {

0 commit comments

Comments
 (0)