Remove old maturity handling code
authorCryptoManiac <balthazar@yandex.ru>
Sat, 26 Jul 2014 17:55:43 +0000 (21:55 +0400)
committerCryptoManiac <balthazar@yandex.ru>
Sat, 26 Jul 2014 17:55:43 +0000 (21:55 +0400)
src/qt/transactionrecord.cpp

index bd6155b..c922188 100644 (file)
@@ -205,31 +205,6 @@ void TransactionRecord::updateStatus(const CWalletTx &wtx)
     // For generated transactions, determine maturity
     if(type == TransactionRecord::Generated)
     {
-/*
-        int64 nCredit = wtx.GetCredit(true);
-        if (nCredit == 0)
-        {
-            status.maturity = TransactionStatus::Immature;
-
-            if (wtx.IsInMainChain())
-            {
-                status.matures_in = wtx.GetBlocksToMaturity();
-
-                // Check if the block was requested by anyone
-                if (GetAdjustedTime() - wtx.nTimeReceived > 2 * 60 && wtx.GetRequestCount() == 0)
-                    status.maturity = TransactionStatus::MaturesWarning;
-            }
-            else
-            {
-                status.maturity = TransactionStatus::NotAccepted;
-            }
-        }
-        else
-        {
-            status.maturity = TransactionStatus::Mature;
-        }
-*/
-
         if (wtx.GetBlocksToMaturity() > 0)
         {
             status.maturity = TransactionStatus::Immature;