From 421c069073226e8b369359554fd600f1e570887e Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 12 Dec 2019 19:31:58 -0500 Subject: [PATCH] src/wallet/rpcdisclosure.cpp upstream changes --- src/wallet/rpcdisclosure.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wallet/rpcdisclosure.cpp b/src/wallet/rpcdisclosure.cpp index 19fb44d0e..cd0cc42a6 100644 --- a/src/wallet/rpcdisclosure.cpp +++ b/src/wallet/rpcdisclosure.cpp @@ -51,7 +51,7 @@ bool EnsureWalletIsAvailable(bool avoidException); /** * RPC call to generate a payment disclosure */ -UniValue z_getpaymentdisclosure(const UniValue& params, bool fHelp) +UniValue z_getpaymentdisclosure(const UniValue& params, bool fHelp, const CPubKey& mypk) { if (!EnsureWalletIsAvailable(fHelp)) return NullUniValue; @@ -158,7 +158,7 @@ UniValue z_getpaymentdisclosure(const UniValue& params, bool fHelp) /** * RPC call to validate a payment disclosure data blob. */ -UniValue z_validatepaymentdisclosure(const UniValue& params, bool fHelp) +UniValue z_validatepaymentdisclosure(const UniValue& params, bool fHelp, const CPubKey& mypk) { if (!EnsureWalletIsAvailable(fHelp)) return NullUniValue;