mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-10 21:04:53 +00:00
Merge pull request #676 from cake-tech/CW-281-electrum-medium-fee
[CW-281] Lower target confirmation for medium
This commit is contained in:
commit
22fbedb3df
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue