change to 5
this appears to be a more sensible value for medium
Justin Ehrenhofer committed
Dec 15, 2022 at 11:48 UTC
b30fe8bb2a0cb176f66a1156ce9766584b166c60
1 file changed
+1
-1
cw_bitcoin/lib/electrum.dart
+1
-1
@@ -303,7 +303,7 @@ class ElectrumClient {
303
Future<List<int>> feeRates() async {
304
try {
305
final topDoubleString = await estimatefee(p: 1);
306
- final middleDoubleString = await estimatefee(p: 2);
306
+ final middleDoubleString = await estimatefee(p: 5);
307
final bottomDoubleString = await estimatefee(p: 100);
308
final top =
309
(stringDoubleToBitcoinAmount(topDoubleString.toString()) / 1000)