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


Bitcoin listlockunspent用法及代码示例


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

用法:

listlockunspent

返回临时不可使用的输出列表。

请参阅lockunspent调用以锁定和解锁交易以进行支出。

返回结果

[
  {
    "txid" : "transactionid",     (string) The transaction id locked
    "vout" : n                      (numeric) The vout value
  }
  ,...
]

示例

列出未使用的交易:

bitcoin-cli listunspent

锁定未使用的交易:

bitcoin-cli lockunspent false "[{\"txid\":\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\",\"vout\":1}]"

列出锁定的事务:

bitcoin-cli listlockunspent

再次解锁交易:

bitcoin-cli lockunspent true "[{\"txid\":\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\",\"vout\":1}]"

作为JSON-RPC调用:

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

相关用法


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