diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-07-18 22:03:35 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-07-18 22:11:53 +0100 |
commit | 8fe180ab80fc16418fadd05ca9aaf6e7d7d8aefa (patch) | |
tree | cec813a84484b331178a5f95791faafe4e945e3c /src/simplewallet/simplewallet.h | |
parent | Merge pull request #345 (diff) | |
download | monero-8fe180ab80fc16418fadd05ca9aaf6e7d7d8aefa.tar.xz |
wallet: add boolean to always confirm transactions with the user
This can be useful if you want to be given a veto over the tx fee,
or if you want to see what a tx fee would be without actually sending.
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 ad1dd015f..c4411e4d4 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -98,6 +98,7 @@ namespace cryptonote * \return success status */ bool seed_set_language(const std::vector<std::string> &args = std::vector<std::string>()); + bool set_always_confirm_transfers(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); |