-
Notifications
You must be signed in to change notification settings - Fork 302
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
fix: temporarily limit dex values to 60 bits #2561
Conversation
Could we leave the existing check as-is, and have a dedicated code path for the temporary restrictions? Then when it's time to remove, we can just delete the temporary check in isolation — in the course of fixing the underlying issue we might determine, for instance, that we needed some restriction on the bitsize, and it'd be cleaner if we could write it separately from the checks we intend to remove. |
@@ -2,18 +2,23 @@ | |||
|
|||
set -euo pipefail | |||
|
|||
PREVIOUS_TESTNET_DIRECTORY=$(find . -mindepth 1 -type d | tail -n1) | |||
echo "#####################################################" | |||
PREVIOUS_TESTNET_DIRECTORY=$(find . -mindepth 1 -type d | sort | tail -n1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change is here, I've added a sort
.
Closes #2560, the diff is large because we're regenerating testnet allocations but each individual commit should consist of a relevant subtask.