diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-15 20:44:44 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-15 20:44:44 +0200 |
commit | 68ccc10b290606eb272333113b1aaa2e27c4b525 (patch) | |
tree | 8c543da8d13a5b0b8a94ef09193ea53ae0353aa3 /src/wallet/wallet2.cpp | |
parent | Merge pull request #2295 (diff) | |
parent | wallet: return unlock_time in get_transfers (diff) | |
download | monero-68ccc10b290606eb272333113b1aaa2e27c4b525.tar.xz |
Merge pull request #2205
c97d1bd3 wallet: return unlock_time in get_transfers (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r-- | src/wallet/wallet2.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index e569197b8..72fd2d866 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1097,6 +1097,7 @@ void wallet2::process_outgoing(const crypto::hash &txid, const cryptonote::trans } entry.first->second.m_block_height = height; entry.first->second.m_timestamp = ts; + entry.first->second.m_unlock_time = tx.unlock_time; } //---------------------------------------------------------------------------------------------------- void wallet2::process_new_blockchain_entry(const cryptonote::block& b, const cryptonote::block_complete_entry& bche, const crypto::hash& bl_id, uint64_t height, const cryptonote::COMMAND_RPC_GET_BLOCKS_FAST::block_output_indices &o_indices) |