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


Bitcoin getnetworkhashps用法及代码示例


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

用法:

getnetworkhashps ( nblocks height )

返回基于最后n个块的估计的每秒网络哈希值。

传入[blocks]以覆盖#个块,-1指定自上次难度更改以来的值。

传入[height]以估计找到特定块时的网络速度。

参数1 - nblocks

类型:数字,可选,默认值= 120

自上次难度改变以来的方块数,即方块的-1。

参数2 - height

类型:数字,可选,默认= -1

估算给定高度时的时间。

返回结果

名称

类型

描述

x

numeric

估计的每秒哈希数

示例

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

相关用法


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