当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Bitcoin getchaintips用法及代码示例


比特币(Bitcoin) RPC Blockchain API中getchaintips的用法及代码示例。

用法:

getchaintips

返回有关块树中所有已知tips的信息,包括主链以及孤立的分支。

返回结果

[
  {
    "height": xxxx,         (numeric) height of the chain tip
    "hash": "xxxx",         (string) block hash of the tip
    "branchlen": 0          (numeric) zero for main chain
    "status": "active"      (string) "active" for the main chain
  },
  {
    "height": xxxx,
    "hash": "xxxx",
    "branchlen": 1          (numeric) length of branch connecting the tip to the main chain
    "status": "xxxx"        (string) status of the chain (active, valid-fork, valid-headers, headers-only, invalid)
  }
]

示例

bitcoin-cli getchaintips
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getchaintips", "params": [] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/

相关用法


注:本文由纯净天空筛选整理自bitcoin.org大神的英文原创作品 Bitcoin getchaintips。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。