From 81005fb214c44e35962b73519f78fb18c1bf8171 Mon Sep 17 00:00:00 2001 From: Eirik Ogilvie-Wigley Date: Wed, 24 Oct 2018 12:05:48 -0600 Subject: [PATCH] Fix error message --- src/wallet/asyncrpcoperation_sendmany.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/asyncrpcoperation_sendmany.cpp b/src/wallet/asyncrpcoperation_sendmany.cpp index 64b1a5f26..0f08d826f 100644 --- a/src/wallet/asyncrpcoperation_sendmany.cpp +++ b/src/wallet/asyncrpcoperation_sendmany.cpp @@ -394,7 +394,7 @@ bool AsyncRPCOperation_sendmany::main_impl() { if (!pwalletMain->GetHDSeed(seed)) { throw JSONRPCError( RPC_WALLET_ERROR, - "CWallet::GenerateNewSaplingZKey(): HD seed not found"); + "AsyncRPCOperation_sendmany::main_impl(): HD seed not found"); } ovk = ovkForShieldingFromTaddr(seed); }