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


Bitcoin estimatesmartfee用法及代码示例


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

用法:

estimatesmartfee conf_target ( "estimate_mode" )

估计交易在conf_target块内开始确认所需的每千字节费用,并返回对其有效的块数。使用BIP 141中定义的虚拟交易大小(见证数据已打折)。

参数1 - conf_target

类型:数字,必填

块中的确认目标(1-1008)

参数2 - estimate_mode

类型:字符串,可选,默认= CONSERVATIVE

费用估算模式。

是否返回更保守的估计,这也可以满足更长的历史。保守的估计可能会返回较高的费用率,并且更可能足以满足期望的目标,但对现行费用市场的短期下跌反应不大。必须为以下之一:“UNSET” “ECONOMICAL” “CONSERVATIVE”

返回结果

{
  "feerate" : x.x,     (numeric, optional) estimate fee rate in BTC/kB
  "errors": [ str... ] (json array of strings, optional) Errors encountered during processing
  "blocks" : n         (numeric) block number where estimate was found
}

示例

bitcoin-cli estimatesmartfee 6

相关用法


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