-
Notifications
You must be signed in to change notification settings - Fork 68
Fixing broken compatibility #828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -52,7 +52,7 @@ validator_ids_string="${validator_ids[*]}" | |
| validator_ids_string="${validator_ids_string//${IFS:0:1}/,}" | ||
|
|
||
| echo "Bootstrapping chain for nodes 0..$((N_VALIDATORS - 1))" | ||
| ./target/release/aleph-node bootstrap-chain --base-path "$BASE_PATH" --account-ids "$validator_ids_string" --chain-type local > "$BASE_PATH/chainspec.json" | ||
| ./target/release/aleph-node bootstrap-chain --raw --base-path "$BASE_PATH" --account-ids "$validator_ids_string" --chain-type local > "$BASE_PATH/chainspec.json" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why we added
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But not having a raw chainspec also produces cryptic errors when you are trying to run it on two different versions. Perhaps we could produce both? |
||
|
|
||
| for i in $(seq "$N_VALIDATORS" "$(( N_VALIDATORS + N_NON_VALIDATORS - 1 ))"); do | ||
| echo "Bootstrapping node $i" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.