From 6a4c196dd64da2fd33dc7ae77a8cdd3e4cf0eff1 Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Fri, 22 Nov 2013 15:31:11 +0400 Subject: 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. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 705e94fabb..9e5ee84f59 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -48,7 +48,7 @@ unsigned int nCoinCacheSize = 5000; /** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */ int64_t CTransaction::nMinTxFee = 10000; // Override with -mintxfee /** Fees smaller than this (in satoshi) are considered zero fee (for relaying) */ -int64_t CTransaction::nMinRelayTxFee = 10000; +int64_t CTransaction::nMinRelayTxFee = 1000; static CMedianFilter cPeerBlockCounts(8, 0); // Amount of blocks that other nodes claim to have -- cgit v1.2.3