Matias Alejo Garcia
9 years ago
No known key found for this signature in database
GPG Key ID: 2470DB551277AB3
1 changed files with
4 additions and
1 deletions
-
lib/common/defaults.js
|
|
@ -70,8 +70,11 @@ Defaults.UTXO_SELECTION_MAX_FEE_VS_SINGLE_UTXO_FEE_FACTOR = 5; |
|
|
|
// Minimum allowed amount for tx outputs (including change) in SAT
|
|
|
|
Defaults.MIN_OUTPUT_AMOUNT = 5000; |
|
|
|
|
|
|
|
// Number of confirmations from which tx in history will be cached
|
|
|
|
// (ie we consider them inmutables)
|
|
|
|
Defaults.CONFIRMATIONS_TO_START_CACHING = 6 * 6; // ~ 6hrs
|
|
|
|
|
|
|
|
Defaults.CONFIRMATIONS_TO_START_CACHING = 100; |
|
|
|
// Number of addresses from which tx history is enabled in a wallet
|
|
|
|
Defaults.HISTORY_CACHE_ADDRESS_THRESOLD = 100; |
|
|
|
|
|
|
|
module.exports = Defaults; |
|
|
|