]> Git Repo - VerusCoin.git/commitdiff
Move FIXME comment to where the fix should happen
authorEirik Ogilvie-Wigley <[email protected]>
Fri, 28 Sep 2018 18:16:05 +0000 (12:16 -0600)
committerEirik Ogilvie-Wigley <[email protected]>
Fri, 28 Sep 2018 18:16:05 +0000 (12:16 -0600)
src/coins.cpp

index edc4d2e20cd2c55e64dbac6630d4112156708a61..31f2dbab09640f377b848d634d2dcfb3ebd8e7b8 100644 (file)
@@ -620,12 +620,12 @@ double CCoinsViewCache::GetPriority(const CTransaction &tx, int nHeight) const
     // cannot apply the priority algorithm used for transparent utxos.  Instead, we just
     // use the maximum priority for all (partially or fully) shielded transactions.
     // (Note that coinbase transactions cannot contain JoinSplits, or Sapling shielded Spends or Outputs.)
-    // FIXME: this logic is partially duplicated between here and CreateNewBlock in miner.cpp.
 
     if (tx.vjoinsplit.size() > 0 || tx.vShieldedSpend.size() > 0 || tx.vShieldedOutput.size() > 0) {
         return MAX_PRIORITY;
     }
 
+    // FIXME: this logic is partially duplicated between here and CreateNewBlock in miner.cpp.
     double dResult = 0.0;
     BOOST_FOREACH(const CTxIn& txin, tx.vin)
     {
This page took 0.026377 seconds and 4 git commands to generate.