比特币(Bitcoin) RPC Mining API中submitheader的用法及代码示例。
用法:
submitheader "hexdata"
将给定的十六进制数据解码为标头,然后将其提交为候选链提示(如果有效)。
标头无效时抛出。
参数1 - hexdata
类型:字符串,必填
hex-encoded块头数据
返回结果
None
示例
bitcoin-cli submitheader "aabbcc"
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "submitheader", "params": ["aabbcc"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
相关用法
- Bitcoin getblocktemplate用法及代码示例
- Bitcoin getmininginfo用法及代码示例
- Bitcoin getnetworkhashps用法及代码示例
- Bitcoin prioritisetransaction用法及代码示例
- Bitcoin submitblock用法及代码示例
注:本文由纯净天空筛选整理自bitcoin.org大神的英文原创作品 Bitcoin submitheader。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。