add names

This commit is contained in:
Matias Alejo Garcia 2016-07-29 10:51:21 -03:00
parent 926506c394
commit 27b2275461
No known key found for this signature in database
GPG Key ID: 02470DB551277AB3
1 changed files with 4 additions and 1 deletions

View File

@ -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;