diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-10-01 17:03:53 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-10-01 17:03:53 +0100 |
commit | 80b4da3330eeb09f0631fd5897f85309a18f3f3b (patch) | |
tree | 73065679e398b7c1dea141939cb04b998cd9770c /src/simplewallet/simplewallet.h | |
parent | Merge pull request #1124 (diff) | |
download | monero-80b4da3330eeb09f0631fd5897f85309a18f3f3b.tar.xz |
wallet: wallet option to confirm transfers with no payment id
set confirm-missing-payment-id 0|1
Defaults to true.
Diffstat (limited to '')
-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 6eb18ed9a..7a7013b99 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -110,6 +110,7 @@ namespace cryptonote bool set_default_mixin(const std::vector<std::string> &args = std::vector<std::string>()); bool set_auto_refresh(const std::vector<std::string> &args = std::vector<std::string>()); bool set_refresh_type(const std::vector<std::string> &args = std::vector<std::string>()); + bool set_confirm_missing_payment_id(const std::vector<std::string> &args = std::vector<std::string>()); bool help(const std::vector<std::string> &args = std::vector<std::string>()); bool start_mining(const std::vector<std::string> &args); bool stop_mining(const std::vector<std::string> &args); |