Make the memo a mandatory argument for SendManyRecipient

This commit is contained in:
Daira Hopwood 2020-03-17 13:41:09 +00:00 committed by GitHub
parent 3dfcf027e3
commit 9526e13a02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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 */