From 9526e13a02346e3f7b7a34d72e80575ba4e3fc02 Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Tue, 17 Mar 2020 13:41:09 +0000 Subject: [PATCH] Make the memo a mandatory argument for SendManyRecipient --- src/wallet/asyncrpcoperation_sendmany.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wallet/asyncrpcoperation_sendmany.h b/src/wallet/asyncrpcoperation_sendmany.h index f565517c1..9e8e39593 100644 --- a/src/wallet/asyncrpcoperation_sendmany.h +++ b/src/wallet/asyncrpcoperation_sendmany.h @@ -31,7 +31,7 @@ public: CAmount amount; std::string memo; - SendManyRecipient(std::string address_, CAmount amount_, std::string memo_ = "") : + SendManyRecipient(std::string address_, CAmount amount_, std::string memo_) : address(address_), amount(amount_), memo(memo_) {} }; @@ -218,4 +218,3 @@ public: #endif /* ASYNCRPCOPERATION_SENDMANY_H */ -