-
Notifications
You must be signed in to change notification settings - Fork 57
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(rln-relay): bump zerokit to v0.3.2 #1951
Conversation
You can find the image built from this PR at
|
@alrevuelta can you confirm that this branch does not produce the bug you mentioned? |
@@ -17,7 +17,7 @@ fi | |||
host_triplet=$(rustup show | grep "Default host: " | cut -d' ' -f3) | |||
|
|||
# Download the prebuilt rln library if it is available | |||
if curl --silent --fail-with-body -L "https://github.com/vacp2p/zerokit/releases/download/v0.3.1/$host_triplet-rln.tar.gz" >> "$host_triplet-rln.tar.gz" | |||
if curl --silent --fail-with-body -L "https://github.com/vacp2p/zerokit/releases/download/v0.3.2/$host_triplet-rln.tar.gz" >> "$host_triplet-rln.tar.gz" |
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.
Maybe an unnecessary overkill, but what about getting the version from the submodule?
Something like
$ git submodule status vendor/zerokit | awk '{print $3}' | sed 's/[()]//g'
v0.3.1
So that there is only one source of truth for the version?
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.
will address in a follow up pr, thanks!
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.
blocked on @alrevuelta's review, but otherwise ok:)
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.
lgtm! indeed it fixes the issue of the db disappearing every second run. Thanks for such a quick fix. I must admit it was very very tricky to reproduce 😢
Description
Bumps zerokit to v0.3.2, which includes a fix for tree persistence
Changes
build_rln.sh
Issue
closes #1944