Skip to content

Commit

Permalink
Merge pull request #2403 from gmaxwell/minfee-to-relayfee
Browse files Browse the repository at this point in the history
Make MIN_TX_FEE match MIN_RELAY_TX_FEE.
  • Loading branch information
sipa committed Apr 8, 2013
2 parents 96371bc + e380082 commit 1828133
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.h
Expand Up @@ -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 */
Expand Down

0 comments on commit 1828133

Please sign in to comment.