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_info.cpp | |
| parent | a213887476136148c9162455d37d4337ef152b68 (diff) | |
| download | monzero-core-02c9df5de247d6f8fb95e1b9272cef2b37be10f8.tar.gz monzero-core-02c9df5de247d6f8fb95e1b9272cef2b37be10f8.tar.xz monzero-core-02c9df5de247d6f8fb95e1b9272cef2b37be10f8.zip | |
Wallet API : transaction history in progress
Diffstat (limited to 'src/wallet/api/transaction_info.cpp')
| -rw-r--r-- | src/wallet/api/transaction_info.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/wallet/api/transaction_info.cpp b/src/wallet/api/transaction_info.cpp index 8de4e555f..c28c52355 100644 --- a/src/wallet/api/transaction_info.cpp +++ b/src/wallet/api/transaction_info.cpp @@ -35,7 +35,16 @@ using namespace std; namespace Bitmonero { +TransactionInfo::~TransactionInfo() {} + TransactionInfoImpl::TransactionInfoImpl() + : m_direction(Direction_Out) + , m_hold(false) + , m_failed(false) + , m_amount(0) + , m_fee(0) + , m_blockheight(0) + , m_timestamp(0) { } @@ -71,7 +80,7 @@ uint64_t TransactionInfoImpl::fee() const return 0; } -string TransactionInfoImpl::address() const +string TransactionInfoImpl::hash() const { return ""; } |
