Lower target confirmation to 2

This commit is contained in:
Justin Ehrenhofer 2022-12-15 09:03:04 -06:00
parent 3d3c22c259
commit 4abda7bb58

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: 2);
final bottomDoubleString = await estimatefee(p: 100);
final top =
(stringDoubleToBitcoinAmount(topDoubleString.toString()) / 1000)