diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-08-03 21:37:45 +0200 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-08-03 21:37:45 +0200 |
commit | a839a6fa8a01ade5672d8205bc5a2632a9992fc2 (patch) | |
tree | f488b794b798502a4ffea9cbfd91d97d74089a81 /src/wallet/api/transaction_history.cpp | |
parent | Merge pull request #2159 (diff) | |
download | monero-a839a6fa8a01ade5672d8205bc5a2632a9992fc2.tar.xz |
Wallet API: add tx unlock time
Diffstat (limited to 'src/wallet/api/transaction_history.cpp')
-rw-r--r-- | src/wallet/api/transaction_history.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/api/transaction_history.cpp b/src/wallet/api/transaction_history.cpp index 85f2b05ce..23d3905b2 100644 --- a/src/wallet/api/transaction_history.cpp +++ b/src/wallet/api/transaction_history.cpp @@ -132,6 +132,7 @@ void TransactionHistoryImpl::refresh() ti->m_blockheight = pd.m_block_height; ti->m_timestamp = pd.m_timestamp; ti->m_confirmations = wallet_height - pd.m_block_height; + ti->m_unlock_time = pd.m_unlock_time; m_history.push_back(ti); /* output.insert(std::make_pair(pd.m_block_height, std::make_pair(true, (boost::format("%20.20s %s %s %s") |