aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2013-03-22 17:48:40 -0700
committerGregory Maxwell <greg@xiph.org>2013-03-22 17:48:40 -0700
commite3800824d6bf7b157a6211cb7eb01ab19a8f5ac0 (patch)
treee4f75fbec8c14b6fd7b0cf4ab83ad002933306c4 /src/main.h
parentdfd71bb4509d12c26e630bc671a542ad5bab4945 (diff)
downloadbitcoin-e3800824d6bf7b157a6211cb7eb01ab19a8f5ac0.tar.xz
Make MIN_TX_FEE match MIN_RELAY_TX_FEE.
Current relay behavior is widely deployed. Supplying a higher minfee than mining and relaying just irritates users without anti-spam gain.
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index 43c3051e4c..b9c348ab42 100644
--- a/src/main.h
+++ b/src/main.h
@@ -45,7 +45,7 @@ static const unsigned int UNDOFILE_CHUNK_SIZE = 0x100000; // 1 MiB
/** Fake height value used in CCoins to signify they are only in the memory pool (since 0.8) */
static const unsigned int MEMPOOL_HEIGHT = 0x7FFFFFFF;
/** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */
-static const int64 MIN_TX_FEE = 50000;
+static const int64 MIN_TX_FEE = 10000;
/** Fees smaller than this (in satoshi) are considered zero fee (for relaying) */
static const int64 MIN_RELAY_TX_FEE = 10000;
/** No amount larger than this (in satoshi) is valid */