change to 5

this appears to be a more sensible value for medium
This commit is contained in:
Justin Ehrenhofer 2022-12-15 11:48:49 -06:00
parent 4abda7bb58
commit b30fe8bb2a

View file

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