Re: (context post by Gavin Andresen)

Figures: Gavin Andresen

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;