aboutsummaryrefslogtreecommitdiff
path: root/src/core.h
diff options
context:
space:
mode:
authorMike Hearn <mike@riker.plan99.net>2013-11-22 15:31:11 +0400
committerMike Hearn <mike@plan99.net>2013-11-26 15:56:28 +0400
commit6a4c196dd64da2fd33dc7ae77a8cdd3e4cf0eff1 (patch)
tree37393308cb70f98cf8dd300144e4b7700532c19d /src/core.h
parent03b6a1cee4fe7f38ca16c0bc2d08d8d4d1288f2f (diff)
downloadbitcoin-6a4c196dd64da2fd33dc7ae77a8cdd3e4cf0eff1.tar.xz
Drop fees by 10x due to the persistently higher exchange rate.
The last fee drop was by 5x (from 50k satoshis to 10k satoshis) in the 0.8.2 release which was about 6 months ago. The current fee is (assuming a $500 exchange rate) about 5 dollar cents. The new fee after this patch is 0.5 cents. Miners who prefer the higher fees are obviously still able to use the command line flags to override this setting. Miners who choose to create smaller blocks will select the highest-fee paying transactions anyway. This would hopefully be the last manual adjustment ever required before floating fees become normal.
Diffstat (limited to 'src/core.h')
-rw-r--r--src/core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.h b/src/core.h
index e31a7e6582..b8a5cad256 100644
--- a/src/core.h
+++ b/src/core.h
@@ -152,8 +152,8 @@ public:
// to spend something, then we consider it dust.
// A typical txout is 34 bytes big, and will
// need a CTxIn of at least 148 bytes to spend,
- // so dust is a txout less than 54 uBTC
- // (5460 satoshis) with default nMinRelayTxFee
+ // so dust is a txout less than 546 satoshis
+ // with default nMinRelayTxFee.
return ((nValue*1000)/(3*((int)GetSerializeSize(SER_DISK,0)+148)) < nMinRelayTxFee);
}