fee levels set to 1, 2, 6

This commit is contained in:
Ivan Socolsky 2015-08-13 17:27:06 -03:00
parent a8eedc8c01
commit 3bd341c65f
2 changed files with 10 additions and 10 deletions

View File

@ -73,11 +73,11 @@ WalletService.FEE_LEVELS = [{
defaultValue: 50000
}, {
name: 'normal',
nbBlocks: 4,
nbBlocks: 2,
defaultValue: 20000
}, {
name: 'economy',
nbBlocks: 12,
nbBlocks: 6,
defaultValue: 10000
}];

View File

@ -1523,8 +1523,8 @@ describe('Wallet service', function() {
it('should get current fee levels', function(done) {
helpers.stubFeeLevels({
1: 40000,
4: 20000,
12: 18000,
2: 20000,
6: 18000,
});
server.getFeeLevels({}, function(err, fees) {
should.not.exist(err);
@ -1535,10 +1535,10 @@ describe('Wallet service', function() {
fees.priority.nbBlocks.should.equal(1);
fees.normal.feePerKB.should.equal(20000);
fees.normal.nbBlocks.should.equal(4);
fees.normal.nbBlocks.should.equal(2);
fees.economy.feePerKB.should.equal(18000);
fees.economy.nbBlocks.should.equal(12);
fees.economy.nbBlocks.should.equal(6);
done();
});
});
@ -1558,8 +1558,8 @@ describe('Wallet service', function() {
it('should get default fees if network cannot estimate (returns -1)', function(done) {
helpers.stubFeeLevels({
1: -1,
4: 18000,
12: 0,
2: 18000,
6: 0,
});
server.getFeeLevels({}, function(err, fees) {
should.not.exist(err);
@ -1570,10 +1570,10 @@ describe('Wallet service', function() {
should.not.exist(fees.priority.nbBlocks);
fees.normal.feePerKB.should.equal(18000);
fees.normal.nbBlocks.should.equal(4);
fees.normal.nbBlocks.should.equal(2);
fees.economy.feePerKB.should.equal(0);
fees.economy.nbBlocks.should.equal(12);
fees.economy.nbBlocks.should.equal(6);
done();
});
});