z_listlockunspent - Hush 3.10.5 RPC

z_listlockunspent

Returns list of temporarily locked shielded outputs which are currently unspendable. They are locked

because they are currently in the process of being spent by an operation such as z_sendmany/z_mergetoaddress/etc.

If that operation succeeds, they will become spent. If it fails they will be unlocked and become

spendable again.

Result:
[
  {
    "txid"     : "transactionid",     (string) The transaction id locked
    "outindex" : n                      (integer) The shielded output index
  }
  ,...
]

Examples:

List the locked Sapling notes
> hush-cli z_listlockunspent 

As a json rpc call
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "z_listlockunspent", "params": [] }' -H 'content-type: text/plain;' http://127.0.0.1:18031/


Maintained by The Hush Developers

Welcome to the Hush full node RPC developer documentation!!! You finally made it.