Merge pull request #515 from mempool/simon/round-up-fee-estimates

Round up fee estimations
This commit is contained in:
wiz 2021-05-13 01:42:37 +09:00 committed by GitHub
commit ad22f9cb46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ class FeeApi {
const multiplier = (pBlock.blockVSize - 500000) / 500000;
return Math.max(Math.round(useFee * multiplier), this.defaultFee);
}
return Math.round(useFee);
return Math.ceil(useFee);
}
}

View File

@ -62,7 +62,7 @@ export class FeesBoxComponent implements OnInit {
const multiplier = (pBlock.blockVSize - 500000) / 500000;
return Math.max(Math.round(useFee * multiplier), this.defaultFee);
}
return Math.round(useFee);
return Math.ceil(useFee);
}
}