-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
build: prepare v0.18.3.4 #9345
Merged
luigi1111
merged 1 commit into
monero-project:release-v0.18
from
selsta:prepare-v0.18.3.4
Aug 13, 2024
Merged
build: prepare v0.18.3.4 #9345
luigi1111
merged 1 commit into
monero-project:release-v0.18
from
selsta:prepare-v0.18.3.4
Aug 13, 2024
+10
−9
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vtnerd
approved these changes
May 29, 2024
height="3159500"
difficulty="0x4ee8653b54b8d40"
hash="985a58096a03b7369a8b56cec6e77ffa6cc98f94d8b57dc9affd61c8477a852e"
node=127.0.0.1:18081
REQ=$(curl http://${node}/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"get_block_header_by_height","params":{"height":'${height}'}}' -H 'Content-Type: application/json')
DATA=$(echo $REQ | jq '.result.block_header')
actual_difficulty=$(echo $DATA | jq -r '.wide_cumulative_difficulty' )
actual_hash=$(echo $DATA | jq -r '.hash')
if [ "$actual_hash" != "$hash" ]; then
echo "hashes don't match"; exit
fi
if [ "$difficulty" != "$actual_difficulty" ]; then
echo "difficulty not equal"; exit
fi
echo "OK"
|
plowsof
approved these changes
May 29, 2024
selsta
force-pushed
the
prepare-v0.18.3.4
branch
from
July 22, 2024 12:23
6e89bb6
to
956d55c
Compare
Updated with newer checkpoints. |
$ monero-blockchain-export --data-dir /var/lib/monero/.bitmonero --blocksdat --output-file blockchain.dat --block-stop 3198000
$ sha256sum blockchain.dat
8ada865350270fd008397684d978dac75ea4029a8a1ffcaa9975c43be119ec19 blockchain.dat
✔️ |
plowsof
approved these changes
Jul 22, 2024
sneurlax
approved these changes
Aug 1, 2024
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.
These changes match many similar "build: prepare" PRs, LGTM
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.