Round up fee estimations

This commit is contained in:
softsimon
2021-05-12 20:13:55 +04:00
parent 63e67dba38
commit 939955fb84
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);
}
}