@@ -31,7 +31,7 @@ static const unsigned int MAX_BLOCK_SIZE = 1000000;
31
31
static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2 ;
32
32
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50 ;
33
33
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100 ;
34
- static const int64 MIN_TX_FEE = 10000 ;
34
+ static const int64 MIN_TX_FEE = 100000000 ;
35
35
static const int64 MIN_RELAY_TX_FEE = MIN_TX_FEE;
36
36
static const int64 MAX_MONEY = 500000000 * COIN; // DogeCoin: maximum of 100B coins (given some randomness), max transaction 500,000,000 for now
37
37
inline bool MoneyRange (int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
@@ -540,7 +540,7 @@ class CTransaction
540
540
{
541
541
// Large (in bytes) low-priority (new, small-coin) transactions
542
542
// need a fee.
543
- return dPriority > COIN * 1440 / 250 ; // DogeCoin: 1440 blocks found a day. Priority cutoff is 1 dogecoin day / 250 bytes.
543
+ return dPriority > 100 * COIN * 1440 / 250 ; // DogeCoin: 1440 blocks found a day. Priority cutoff is 100 dogecoin day / 250 bytes.
544
544
}
545
545
546
546
int64 GetMinFee (unsigned int nBlockSize=1 , bool fAllowFree =true , enum GetMinFee_mode mode=GMF_BLOCK) const
@@ -569,9 +569,9 @@ class CTransaction
569
569
}
570
570
}
571
571
572
- // To limit dust spam, add MIN_TX_FEE/MIN_RELAY_TX_FEE for any output that is less than 0.01
572
+ // To limit dust spam, add MIN_TX_FEE/MIN_RELAY_TX_FEE for any output that is less than 1.00
573
573
BOOST_FOREACH (const CTxOut& txout, vout)
574
- if (txout.nValue < CENT )
574
+ if (txout.nValue < COIN )
575
575
nMinFee += nBaseFee;
576
576
577
577
// Raise the price as the block approaches full
0 commit comments