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
getblockchaininfo
The signblock_* fields in the getblockchaininfo RPC are caclculated in src/rpc/blockchain.cpp as follows:
signblock_*
src/rpc/blockchain.cpp
CScript sign_block_script = chainparams.GetConsensus().signblockscript; obj.pushKV("signblock_asm", ScriptToAsmStr(sign_block_script)); obj.pushKV("signblock_hex", HexStr(sign_block_script));
This is encoding the initial block signing script that the network was launched with at genesis.
However, this will become incorrect when the first dynafed transition which changes this script takes place.
The text was updated successfully, but these errors were encountered:
03b8b0c
Successfully merging a pull request may close this issue.
The
signblock_*
fields in thegetblockchaininfo
RPC are caclculated insrc/rpc/blockchain.cpp
as follows:This is encoding the initial block signing script that the network was launched with at genesis.
However, this will become incorrect when the first dynafed transition which changes this script takes place.
The text was updated successfully, but these errors were encountered: