dynamic max fee rate value (#1395)

This commit is contained in:
Serhii 2024-04-25 19:28:18 +03:00 committed by GitHub
parent 190c8e06b9
commit 9ff6da3d5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 54 additions and 9 deletions

View file

@ -159,6 +159,7 @@ abstract class Bitcoin {
Future<bool> isChangeSufficientForFee(Object wallet, String txId, String newFee);
int getFeeAmountForPriority(Object wallet, TransactionPriority priority, int inputsCount, int outputsCount, {int? size});
int getFeeAmountWithFeeRate(Object wallet, int feeRate, int inputsCount, int outputsCount, {int? size});
int getMaxCustomFeeRate(Object wallet);
}
""";