Merge pull request #4894
aee7a4e3wallet_rpc_server: do not use RPC data if the call failed (moneromooo-monero)1a0733e5windows_service: fix memory leak (moneromooo-monero)0dac3c64unit_tests: do not rethrow a copy of an exception (moneromooo-monero)5d9915abcryptonote: fix get_unit for non default settings (moneromooo-monero)d4f50cb1remove some unused code (moneromooo-monero)61163971a few minor (but easy) performance tweaks (moneromooo-monero)30023074tests: slow_memmem now returns size_t (moneromooo-monero)
This commit is contained in:
@@ -594,7 +594,7 @@ namespace tools
|
||||
/*!
|
||||
* \brief Finalizes creation of a multisig wallet
|
||||
*/
|
||||
bool finalize_multisig(const epee::wipeable_string &password, std::unordered_set<crypto::public_key> pkeys, std::vector<crypto::public_key> signers);
|
||||
bool finalize_multisig(const epee::wipeable_string &password, const std::unordered_set<crypto::public_key> &pkeys, std::vector<crypto::public_key> signers);
|
||||
/*!
|
||||
* Get a packaged multisig information string
|
||||
*/
|
||||
@@ -1047,7 +1047,7 @@ namespace tools
|
||||
* \param account_indices Indices of accounts.
|
||||
* \param tag Tag's name. If empty, the accounts become untagged.
|
||||
*/
|
||||
void set_account_tag(const std::set<uint32_t> account_indices, const std::string& tag);
|
||||
void set_account_tag(const std::set<uint32_t> &account_indices, const std::string& tag);
|
||||
/*!
|
||||
* \brief Set the label of the given tag.
|
||||
* \param tag Tag's name (which must be non-empty).
|
||||
|
||||
Reference in New Issue
Block a user