diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-23 15:14:16 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-23 15:15:55 +0000 |
commit | 5e10dee3ea784653d8669f4bee569033c94d9a90 (patch) | |
tree | 7da5c01acb7a9a5aacde8c0fc2d74bf0c0b9f096 /src/simplewallet/simplewallet.h | |
parent | Merge pull request #4902 (diff) | |
download | monero-5e10dee3ea784653d8669f4bee569033c94d9a90.tar.xz |
simplewallet: fix show_transfers colouring, and add red for failed
Also add the type back, as it was somehow weirdly split into
two different fields, one being a union...
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 5010e3adc..537370916 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -254,6 +254,7 @@ namespace cryptonote struct transfer_view { + std::string type; boost::variant<uint64_t, std::string> block; uint64_t timestamp; std::string direction; |