diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-07 23:34:05 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-07 23:34:06 +0200 |
commit | bfd2532ea53b9422b219aec61a662318b18b747b (patch) | |
tree | 6d2463d775ef0ba09a4cf336c5b86c527fc1ea66 /src/wallet/api/transaction_history.cpp | |
parent | Merge pull request #2263 (diff) | |
parent | Wallet API: add tx unlock time (diff) | |
download | monero-bfd2532ea53b9422b219aec61a662318b18b747b.tar.xz |
Merge pull request #2247
a839a6fa Wallet API: add tx unlock time (Jaquee)
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") |