为什么标题和块的数量不同?

时间:2019-02-18 20:58:34

标签: blockchain bitcoin bitcoind blockchain.info-api

当我运行$bitcoin-cli getblockchaininfo时,它向我显示:

{
  "chain": "main",
  "blocks": 20204,
  "headers": 563653,
  ....
}

但是如果他的标题标识了一个块,那么标题和块的数量必须相同,这是我不明白的吗?

1 个答案:

答案 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是已验证的最高块头的高度(两者都减一,因为计数从零开始)。单独验证标头并不需要整个块。