mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
Lower target confirmation to 2
This commit is contained in:
parent
3d3c22c259
commit
4abda7bb58
1 changed files with 1 additions and 1 deletions
|
@ -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: 20);
|
final middleDoubleString = await estimatefee(p: 2);
|
||||||
final bottomDoubleString = await estimatefee(p: 100);
|
final bottomDoubleString = await estimatefee(p: 100);
|
||||||
final top =
|
final top =
|
||||||
(stringDoubleToBitcoinAmount(topDoubleString.toString()) / 1000)
|
(stringDoubleToBitcoinAmount(topDoubleString.toString()) / 1000)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue