From 85810121633dd38fd21d5723bd91ad8896028be8 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Tue, 6 Sep 2022 11:19:16 -0400 Subject: [PATCH] Sweep operations might not create any txs, so make logging more precise --- src/wallet/asyncrpcoperation_sweep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/asyncrpcoperation_sweep.cpp b/src/wallet/asyncrpcoperation_sweep.cpp index 780ddfa29..fcf4769bb 100644 --- a/src/wallet/asyncrpcoperation_sweep.cpp +++ b/src/wallet/asyncrpcoperation_sweep.cpp @@ -64,7 +64,7 @@ void AsyncRPCOperation_sweep::main() { set_state(OperationStatus::FAILED); } - std::string s = strprintf("%s: Sweep transaction created. (status=%s", getId(), getStateAsString()); + std::string s = strprintf("%s: Sweep operation finished. (status=%s", getId(), getStateAsString()); if (success) { s += strprintf(", success)\n"); } else {