Lower target confirmation to 2

Justin Ehrenhofer committed Dec 15, 2022 at 09:03 UTC 4abda7bb58ae492cd30edf52cb4113f93cb014f3
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: 20);
306 + final middleDoubleString = await estimatefee(p: 2);
307 final bottomDoubleString = await estimatefee(p: 100);
308 final top =
309 (stringDoubleToBitcoinAmount(topDoubleString.toString()) / 1000)