diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-04-22 13:21:08 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-04-22 13:21:08 +0300 |
commit | 02c9df5de247d6f8fb95e1b9272cef2b37be10f8 (patch) | |
tree | d12be2519202c6075f95d05b60190727bb8508c2 /src/wallet/api/transaction_history.h | |
parent | transaction history api in progress (diff) | |
download | monero-02c9df5de247d6f8fb95e1b9272cef2b37be10f8.tar.xz |
Wallet API : transaction history in progress
Diffstat (limited to 'src/wallet/api/transaction_history.h')
-rw-r--r-- | src/wallet/api/transaction_history.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/api/transaction_history.h b/src/wallet/api/transaction_history.h index 1ff729b54..171fd2210 100644 --- a/src/wallet/api/transaction_history.h +++ b/src/wallet/api/transaction_history.h @@ -47,6 +47,8 @@ public: virtual void refresh(); private: + + // TransactionHistory is responsible of memory management std::vector<TransactionInfo*> m_history; WalletImpl *m_wallet; }; |