From 4cff8a5c50135f23c3e1ae00c52c6dff68debf22 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 6 Sep 2016 22:52:34 -0700 Subject: [PATCH] Fix typo in error message --- src/wallet/asyncrpcoperation_sendmany.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/asyncrpcoperation_sendmany.cpp b/src/wallet/asyncrpcoperation_sendmany.cpp index 0243ec6b8..dffc2e0d7 100644 --- a/src/wallet/asyncrpcoperation_sendmany.cpp +++ b/src/wallet/asyncrpcoperation_sendmany.cpp @@ -840,8 +840,8 @@ Object AsyncRPCOperation_sendmany::perform_joinsplit( info.vpub_old, info.vpub_new); - if (!(jsdesc.Verify(*pzcashParams, joinSplitPubKey_))) { - throw std::runtime_error("error verifying joinsplt"); + if (!(jsdesc.Verify(*zcashParams_, joinSplitPubKey_))) { + throw std::runtime_error("error verifying joinsplit"); } mtx.vjoinsplit.push_back(jsdesc);