We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90270f7 commit 7c2dfacCopy full SHA for 7c2dfac
1 file changed
src/handlers/offline.rs
@@ -874,7 +874,8 @@ impl AppCommand<AppContext<OfflineOperations<'_>>> for LockUtxoCommand {
874
let wallet = &mut ctx.state.wallet;
875
for out_point in &self.utxos {
876
if wallet.get_utxo(*out_point).is_none() {
877
- eprintln!("warning: {out_point} is not a known wallet UTXO; locking anyway");
+ eprintln!("warning: {out_point} is not a known wallet UTXO; skipping");
878
+ continue;
879
}
880
wallet.lock_outpoint(*out_point);
881
0 commit comments