Less noise unless -debug is used
This commit is contained in:
@@ -776,7 +776,6 @@ void AsyncRPCOperation_sendmany::lock_notes() {
|
||||
LogPrintf("%s: found %lu notes to lock\n", __func__, saplingNoteInputs_.size() );
|
||||
for (auto note : saplingNoteInputs_) {
|
||||
if(pwalletMain->IsLockedNote(std::get<0>(note))) {
|
||||
//TODO: deal with this
|
||||
LogPrintf("%s: note already locked!\n", __func__);
|
||||
} else {
|
||||
pwalletMain->LockNote(std::get<0>(note));
|
||||
@@ -790,7 +789,6 @@ void AsyncRPCOperation_sendmany::unlock_notes() {
|
||||
LogPrintf("%s: found %lu notes to unlock\n", __func__, saplingNoteInputs_.size() );
|
||||
for (auto note : saplingNoteInputs_) {
|
||||
if(pwalletMain->IsLockedNote(std::get<0>(note))) {
|
||||
//TODO: deal with this
|
||||
pwalletMain->UnlockNote(std::get<0>(note));
|
||||
} else {
|
||||
LogPrintf("%s: note already unlocked!\n", __func__);
|
||||
|
||||
Reference in New Issue
Block a user