Merge pull request #676 from cake-tech/CW-281-electrum-medium-fee

[CW-281] Lower target confirmation for medium
This commit is contained in:
Omar Hatem 2022-12-15 19:56:44 +02:00 committed by GitHub
commit 22fbedb3df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -303,7 +303,7 @@ class ElectrumClient {
Future<List<int>> feeRates() async {
try {
final topDoubleString = await estimatefee(p: 1);
final middleDoubleString = await estimatefee(p: 20);
final middleDoubleString = await estimatefee(p: 5);
final bottomDoubleString = await estimatefee(p: 100);
final top =
(stringDoubleToBitcoinAmount(topDoubleString.toString()) / 1000)