Auto merge of #3620 - Eirik0:fix-sendmany-errmsg, r=bitcartel

Fix error message

This error should never happen, but it may as well reference the method it is thrown from.
This commit is contained in:
Homu 2018-10-24 14:12:05 -07:00
commit e88a069627
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}