You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The call lockunspent allows unlocking every UTXO, but I think this cant be done with rust-bitcoincore-rpc.
The way to unlock everything is to just pass true, but the way the call is currently implemented always passes another list (e.g. true []). Even if that list is empty Core will not unlock everything.
Examples:
let rpc:Client;
rpc.unlock_unspent(&[]);//does not unlock every UTXO
rpc.call("lockunspent",&[Value::Bool(true)]);//does unlock every UTXO
The text was updated successfully, but these errors were encountered:
The call
lockunspent
allows unlocking every UTXO, but I think this cant be done with rust-bitcoincore-rpc.The way to unlock everything is to just pass
true
, but the way the call is currently implemented always passes another list (e.g.true []
). Even if that list is empty Core will not unlock everything.Examples:
The text was updated successfully, but these errors were encountered: