The rule is “if any TxOut (output) has a value of less than 0.01 bitcoins, charge a 0.01 fee”:
main.h:
foreach(const CTxOut& txout, vout)
if (txout.nValue < CENT)
nMinFee = CENT; The rule is “if any TxOut (output) has a value of less than 0.01 bitcoins, charge a 0.01 fee”:
main.h:
foreach(const CTxOut& txout, vout)
if (txout.nValue < CENT)
nMinFee = CENT;