diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-04-29 16:26:14 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-04-29 16:26:14 +0300 |
commit | 93119344ecb3326b452f2f8e91bc101fe1896f8c (patch) | |
tree | 5cb9575138b9f87d8c505c636d26403c23ad1584 /src/simplewallet/simplewallet.cpp | |
parent | merged with upstream (diff) | |
download | monero-93119344ecb3326b452f2f8e91bc101fe1896f8c.tar.xz |
TransactionHistory continued
Diffstat (limited to '')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 29c92e049..226b9559f 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -2641,6 +2641,10 @@ bool simple_wallet::show_transfers(const std::vector<std::string> &args_) return true; } + if (in) { + + } + // optional in/out selector if (local_args.size() > 0) { if (local_args[0] == "in" || local_args[0] == "incoming") { @@ -2702,6 +2706,7 @@ bool simple_wallet::show_transfers(const std::vector<std::string> &args_) } } + if (out) { std::list<std::pair<crypto::hash, tools::wallet2::confirmed_transfer_details>> payments; m_wallet->get_payments_out(payments, min_height, max_height); |