Add logging for the locking+unlocking of zins

This commit is contained in:
Duke
2025-05-18 16:07:10 -04:00
parent bd730cb927
commit 8980fceadf

View File

@@ -124,6 +124,7 @@ AsyncRPCOperation_sendmany::AsyncRPCOperation_sendmany(
//lock_utxos(); //lock_utxos();
// Lock shielded input notes // Lock shielded input notes
lock_notes(); lock_notes();
LogPrint("zrpc", "%s: z_sendmany input notes locked\n", getId());
} }
AsyncRPCOperation_sendmany::~AsyncRPCOperation_sendmany() { AsyncRPCOperation_sendmany::~AsyncRPCOperation_sendmany() {
@@ -193,6 +194,7 @@ void AsyncRPCOperation_sendmany::main() {
//unlock_utxos(); // clean up //unlock_utxos(); // clean up
unlock_notes(); // clean up unlock_notes(); // clean up
LogPrint("zrpc", "%s: z_sendmany input notes unlocked\n", getId());
} }
// Notes: // Notes: