diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-05-01 15:36:19 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-01 15:36:19 -0500 |
commit | ac9f7c9bece0807e8198d8eb9f9ba231b961a187 (patch) | |
tree | 8731cd6df5fae85107c00014acf559c54983e401 /src/simplewallet/simplewallet.h | |
parent | Merge pull request #6446 (diff) | |
parent | simplewallet: add sweep_account command (diff) | |
download | monero-ac9f7c9bece0807e8198d8eb9f9ba231b961a187.tar.xz |
Merge pull request #6449
27d551d simplewallet: add sweep_account command (moneromooo-monero)
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index 63fef01e4..59818b303 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -170,8 +170,9 @@ namespace cryptonote bool transfer(const std::vector<std::string> &args); bool locked_transfer(const std::vector<std::string> &args); bool locked_sweep_all(const std::vector<std::string> &args); - bool sweep_main(uint64_t below, bool locked, const std::vector<std::string> &args); + bool sweep_main(uint32_t account, uint64_t below, bool locked, const std::vector<std::string> &args); bool sweep_all(const std::vector<std::string> &args); + bool sweep_account(const std::vector<std::string> &args); bool sweep_below(const std::vector<std::string> &args); bool sweep_single(const std::vector<std::string> &args); bool sweep_unmixable(const std::vector<std::string> &args); |