diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-07-19 17:49:15 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-08-03 12:48:16 +0000 |
commit | 37f07992846ce0b07b872e5f2c61fc65930de06d (patch) | |
tree | 36ff3611f3e4d6868ef88ac82adc9de4df781cb7 /src/wallet/wallet2.cpp | |
parent | Merge pull request #4117 (diff) | |
download | monero-37f07992846ce0b07b872e5f2c61fc65930de06d.tar.xz |
wallet: distinguish coinbase from other txes in show_transfers
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 40a43b8e7..c3055f207 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1595,6 +1595,7 @@ void wallet2::process_new_transaction(const crypto::hash &txid, const cryptonote payment.m_block_height = height; payment.m_unlock_time = tx.unlock_time; payment.m_timestamp = ts; + payment.m_coinbase = miner_tx; payment.m_subaddr_index = i.first; if (pool) { emplace_or_replace(m_unconfirmed_payments, payment_id, pool_payment_details{payment, double_spend_seen}); @@ -7407,6 +7408,7 @@ void wallet2::light_wallet_get_address_txs() payment.m_block_height = t.height; payment.m_unlock_time = t.unlock_time; payment.m_timestamp = t.timestamp; + payment.m_coinbase = t.coinbase; if (t.mempool) { if (std::find(unconfirmed_payments_txs.begin(), unconfirmed_payments_txs.end(), tx_hash) == unconfirmed_payments_txs.end()) { |