wallet: distinguish coinbase from other txes in show_transfers
This commit is contained in:
@@ -270,7 +270,7 @@ namespace tools
|
||||
entry.unlock_time = pd.m_unlock_time;
|
||||
entry.fee = pd.m_fee;
|
||||
entry.note = m_wallet->get_tx_note(pd.m_tx_hash);
|
||||
entry.type = "in";
|
||||
entry.type = pd.m_coinbase ? "block" : "in";
|
||||
entry.subaddr_index = pd.m_subaddr_index;
|
||||
entry.address = m_wallet->get_subaddress_as_str(pd.m_subaddr_index);
|
||||
set_confirmations(entry, m_wallet->get_blockchain_current_height(), m_wallet->get_last_block_reward());
|
||||
|
||||
Reference in New Issue
Block a user