We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It will be useful to have encoded block vectors for all the network upgrades so we can unit test the consensus changes for each. Related to #1051
Ideally we should add 3 blocks per upgrade: NU-1, NU, and NU+1 for every network upgrade for mainnet and testnet.
This are the commands needed to be executed in a synchronized zcashd for blossom testnet(activation height: 584_000):
./src/zcash-cli getblock 583999 0 ./src/zcash-cli getblock 584000 0 ./src/zcash-cli getblock 584001 0
and blossom mainnet(activation height: 653_600)
./src/zcash-cli getblock 653599 0 ./src/zcash-cli getblock 653600 0 ./src/zcash-cli getblock 653601 0
Use https://github.com/ZcashFoundation/zebra/blob/main/zebra-chain/src/parameters/network_upgrade.rs#L44=L68 to get other heights.
TODO:
Networks
Network Upgrades
The text was updated successfully, but these errors were encountered:
I'd also like to have lists of Mainnet / Testnet blocks, and maybe blocks for each network upgrade, and all blocks.
Sorry, something went wrong.
I just went with the list of all blocks, we can make more specific lists if we need them.
teor2345
Successfully merging a pull request may close this issue.
It will be useful to have encoded block vectors for all the network upgrades so we can unit test the consensus changes for each. Related to #1051
Ideally we should add 3 blocks per upgrade: NU-1, NU, and NU+1 for every network upgrade for mainnet and testnet.
This are the commands needed to be executed in a synchronized zcashd for blossom testnet(activation height: 584_000):
and blossom mainnet(activation height: 653_600)
Use https://github.com/ZcashFoundation/zebra/blob/main/zebra-chain/src/parameters/network_upgrade.rs#L44=L68 to get other heights.
TODO:
Networks
Network Upgrades
The text was updated successfully, but these errors were encountered: