b) Miners who mine with this code will require a fee >= 0.001 to
include TX's with outputs <= COIN_DUST
c) Normal clients will require a fee >= 0.0005 to relay TX's with
outputs <= COIN_DUST
Why not make these be
b) Miners who mine with this code will require a fee >= 0.001COIN_DUST to
include TX's with outputs <= COIN_DUST
c) Normal clients will require a fee >= 0.0005COIN_DUST/2 to relay TX's with
outputs <= COIN_DUST
?
I have an even better proposition
const COIN_DUST_FEE_MULTIPLIER = 0.5;
b) Miners who mine with this code will require a fee >=
0.001COIN_DUST to
include TX's with outputs <= COIN_DUST
c) Normal clients will require a fee >=
0.0005COIN_DUST * COIN_DUST_FEE_MULTIPLIER to relay TX's with
outputs <= COIN_DUST