increase default fee per kb values + add urgent level

This commit is contained in:
Ivan Socolsky 2017-03-01 18:50:46 -03:00
parent 7096157bdb
commit 22ede6ec1b
No known key found for this signature in database
GPG Key ID: FAECE6A05FAA4F56
1 changed files with 9 additions and 4 deletions

View File

@ -25,21 +25,26 @@ Defaults.MAX_MAIN_ADDRESS_GAP = 20;
Defaults.SCAN_ADDRESS_GAP = Defaults.MAX_MAIN_ADDRESS_GAP + 20;
Defaults.FEE_LEVELS = [{
name: 'urgent',
nbBlocks: 2,
multiplier: 1.5,
defaultValue: 150000,
}, {
name: 'priority',
nbBlocks: 2,
defaultValue: 50000
defaultValue: 100000
}, {
name: 'normal',
nbBlocks: 3,
defaultValue: 40000
defaultValue: 80000
}, {
name: 'economy',
nbBlocks: 6,
defaultValue: 25000
defaultValue: 50000
}, {
name: 'superEconomy',
nbBlocks: 24,
defaultValue: 10000
defaultValue: 20000
}];
Defaults.DEFAULT_FEE_PER_KB = Defaults.FEE_LEVELS[1].defaultValue;