git.delta.rocks / unique-network / refs/commits / 497a13397353

difftreelog

Style fixed

str-mv2021-11-09parent: #b03b88f.patch.diff
in: master

2 files changed

modifiedtests/src/creditFeesToTreasury.test.tsdiffbeforeafterboth
175 const expectedTransferFee = 0.1;175 const expectedTransferFee = 0.1;
176 const toleranceMaxBound = 0.0012;176 const toleranceMaxBound = 0.0012;
177 const toleranceMinBound = -0.0012;177 const toleranceMinBound = -0.0012;
178 let fact = Number(fee) / 1e15 - expectedTransferFee;178 const fact = Number(fee) / 1e15 - expectedTransferFee;
179 expect(fact).to.be.lessThan(toleranceMaxBound);179 expect(fact).to.be.lessThan(toleranceMaxBound);
180 expect(fact).to.be.greaterThan(toleranceMinBound);180 expect(fact).to.be.greaterThan(toleranceMinBound);
181 });181 });
modifiedtests/src/util/helpers.tsdiffbeforeafterboth

no syntactic changes