mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 13:59:06 +01:00
Litecoin: Reduce default mintxfee to 0.001
This commit is contained in:
parent
3ba60fe898
commit
7cc3c0a9c0
@ -49,9 +49,9 @@ bool fTxIndex = false;
|
|||||||
unsigned int nCoinCacheSize = 5000;
|
unsigned int nCoinCacheSize = 5000;
|
||||||
|
|
||||||
/** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */
|
/** Fees smaller than this (in satoshi) are considered zero fee (for transaction creation) */
|
||||||
int64 CTransaction::nMinTxFee = 2000000;
|
int64 CTransaction::nMinTxFee = 100000;
|
||||||
/** Fees smaller than this (in satoshi) are considered zero fee (for relaying) */
|
/** Fees smaller than this (in satoshi) are considered zero fee (for relaying) */
|
||||||
int64 CTransaction::nMinRelayTxFee = 2000000;
|
int64 CTransaction::nMinRelayTxFee = 100000;
|
||||||
|
|
||||||
CMedianFilter<int> cPeerBlockCounts(8, 0); // Amount of blocks that other nodes claim to have
|
CMedianFilter<int> cPeerBlockCounts(8, 0); // Amount of blocks that other nodes claim to have
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user