Skip to content

Commit 5bba0c2

Browse files
committed
various fixes and additions
1 parent df4f545 commit 5bba0c2

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

rs/nervous_system/tools/release-runscript/src/main.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,9 +279,6 @@ fn run_create_proposal_texts(cmd: CreateProposalTexts) -> Result<()> {
279279
let mut sns_proposal_text_paths = Vec::new();
280280

281281
{
282-
// Switch to the commit being released while we generate the proposal texts
283-
let _commit_switcher = CommitSwitcher::switch(commit.clone())?;
284-
285282
println!(
286283
"Creating proposal texts for {} NNS canisters and {} SNS canisters at commit {}",
287284
nns_canisters.len(),

rs/nns/canister_ids.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,9 @@
5454
"nns-ui": {
5555
"local": "qoctq-giaaa-aaaaa-aaaea-cai",
5656
"mainnet": "qoctq-giaaa-aaaaa-aaaea-cai"
57+
},
58+
"node-rewards": {
59+
"local": "sgymv-uiaaa-aaaaa-aaaia-cai",
60+
"mainnet": "sgymv-uiaaa-aaaaa-aaaia-cai"
5761
}
5862
}

testnet/tools/nns-tools/lib/constants.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ export GTC=renrk-eyaaa-aaaaa-aaada-cai
3030
export NNS_DAPP=qoctq-giaaa-aaaaa-aaaea-cai
3131
export ICP_ARCHIVE=qjdve-lqaaa-aaaaa-aaaeq-cai
3232
export SNS_W=qaa6y-5yaaa-aaaaa-aaafa-cai
33-
export NODE_REWARDS=todo-canister-id-after-creation
33+
export NODE_REWARDS=sgymv-uiaaa-aaaaa-aaaia-cai

testnet/tools/nns-tools/lib/functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ get_nns_canister_code_location() {
155155
code_location__identity="$RUST_DIR/nns/identity"
156156
code_location__nns_ui="$RUST_DIR/nns/nns-ui"
157157
code_location__sns_wasm="$RUST_DIR/nns/sns-wasm $SNS_INIT"
158-
code_location__node_rewards="RUST_DIR/node_rewards $RUST_DIR/registry/node_provider_rewards"
158+
code_location__node_rewards="$RUST_DIR/node_rewards/canister $RUST_DIR/node_rewards $RUST_DIR/registry/node_provider_rewards"
159159

160160
UNDERSCORED_CANISTER_NAME=$(echo "$CANISTER_NAME" | tr "-" "_")
161161
n=code_location__${UNDERSCORED_CANISTER_NAME}

testnet/tools/nns-tools/lib/proposals.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ get too old. One reason to run recent builds is so that the next release
151151
does not have a huge amount of changes in it.'
152152
fi
153153
else
154-
print_yellow 'No unreleased_changelog.md file for ${CANISTER_NAME}.' >&2
154+
print_yellow "No unreleased_changelog.md found at ${UNRELEASED_CHANGELOG_PATH} for ${CANISTER_NAME} " >&2
155155
print_yellow 'The "Features & Fixes" section will need to be written by hand.' >&2
156156
fi
157157

0 commit comments

Comments
 (0)