From 269310ce3c836fb8bc14d02a06d25043631ca1c1 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 7 Sep 2016 08:34:55 -0700 Subject: [PATCH] Replace zcashParams_ with global. --- 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 63896bd7..671e96ea 100644 --- a/src/wallet/asyncrpcoperation_sendmany.cpp +++ b/src/wallet/asyncrpcoperation_sendmany.cpp @@ -841,7 +841,7 @@ Object AsyncRPCOperation_sendmany::perform_joinsplit( info.vpub_new, !this->testmode); - if (!(jsdesc.Verify(*zcashParams_, joinSplitPubKey_))) { + if (!(jsdesc.Verify(*pzcashParams, joinSplitPubKey_))) { throw std::runtime_error("error verifying joinsplit"); }