# Gavin Andresen # 2010-08-04 12:55:59 # https://bitcointalk.org/index.php?topic=287.msg7459#msg7459 @s{quotedtext} @s{quotedtext} The rule is "if any TxOut (output) has a value of less than 0.01 bitcoins, charge a 0.01 fee": @p{brk} Code: main.h: @p{brk} foreach(const CTxOut& txout, vout) @p{brk} if (txout.nValue @p{lt} CENT) @p{brk} nMinFee = CENT; @p{brk}