Skip to content

Commit

Permalink
Merge pull request peercoin#133 from glv2/tx-view
Browse files Browse the repository at this point in the history
Use the right icon for immature minting transactions.
  • Loading branch information
brossi committed Nov 4, 2014
2 parents 0ea1627 + ccb4ae4 commit 3f8551c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/transactiontablemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ QString TransactionTableModel::formatTxAmount(const TransactionRecord *wtx, bool

QVariant TransactionTableModel::txStatusDecoration(const TransactionRecord *wtx) const
{
if(wtx->type == TransactionRecord::Generated)
if(wtx->type == TransactionRecord::Generated || wtx->type == TransactionRecord::StakeMint)
{
switch(wtx->status.maturity)
{
Expand Down

0 comments on commit 3f8551c

Please sign in to comment.