From 62c9bce6f7d29ce4ed84547777b79011d1176351 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 16 Sep 2022 14:33:37 -0400 Subject: [PATCH] Correct error messsage about invalid zsweepexclude address --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index cec462cf5..63a8d9c8e 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -2123,7 +2123,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) LogPrintf("Sweep Excluded Address: %s\n", vSweepExclude[i]); auto zSweepExcluded = DecodePaymentAddress(vSweepExclude[i]); if (!IsValidPaymentAddress(zSweepExcluded)) { - return InitError("Invalid zsweep address"); + return InitError("Invalid zsweepexclude address"); } auto hasSpendingKey = boost::apply_visitor(HaveSpendingKeyForPaymentAddress(pwalletMain), zSweepExcluded);