diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-06-10 10:08:55 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-06-10 10:08:55 +0100 |
commit | b2319a03a6ed288a3f27d8298a925696cd831886 (patch) | |
tree | 99783372de50f87274a6e75a8b5eb7a2e60cb8fc /src/simplewallet/simplewallet.h | |
parent | Merge pull request #2059 (diff) | |
download | monero-b2319a03a6ed288a3f27d8298a925696cd831886.tar.xz |
simplewallet: new command to generate a random payment id
This is trivial, but often requested, and possibly hard to do
in Windows. That makes it more user friendly.
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index 1b58ff32a..edef47e01 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -170,6 +170,7 @@ namespace cryptonote bool import_outputs(const std::vector<std::string> &args); bool show_transfer(const std::vector<std::string> &args); bool change_password(const std::vector<std::string>& args); + bool payment_id(const std::vector<std::string> &args); uint64_t get_daemon_blockchain_height(std::string& err); bool try_connect_to_daemon(bool silent = false, uint32_t* version = nullptr); |