当我运行$bitcoin-cli getblockchaininfo
时,它向我显示:
{
"chain": "main",
"blocks": 20204,
"headers": 563653,
....
}
但是如果他的标题标识了一个块,那么标题和块的数量必须相同,这是我不明白的吗?
答案 0 :(得分:3)
请参阅Bitcoin RPC Documentation - getblockchaininfo
"blocks": xxxxxx, (numeric) the current number of blocks processed in the server
"headers": xxxxxx, (numeric) the current number of headers we have validated
blocks
是已下载和已验证的最高块的高度,headers
是已验证的最高块头的高度(两者都减一,因为计数从零开始)。单独验证标头并不需要整个块。