From 85b9fdc2f3c07f353166deb2a087bbf52ca50ef4 Mon Sep 17 00:00:00 2001 From: julian Date: Wed, 23 Nov 2022 12:42:08 -0600 Subject: [PATCH] random hardcoded values :/ --- lib/services/coins/monero/monero_wallet.dart | 6 +++--- lib/services/coins/wownero/wownero_wallet.dart | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/services/coins/monero/monero_wallet.dart b/lib/services/coins/monero/monero_wallet.dart index 58bd36c72..6f1e49ee5 100644 --- a/lib/services/coins/monero/monero_wallet.dart +++ b/lib/services/coins/monero/monero_wallet.dart @@ -564,11 +564,11 @@ class MoneroWallet extends CoinServiceAPI { Future? _currentReceivingAddress; Future _getFees() async { - // TODO: not use hard coded values here + // TODO: not use random hard coded values here return FeeObject( numberOfBlocksFast: 10, - numberOfBlocksAverage: 10, - numberOfBlocksSlow: 10, + numberOfBlocksAverage: 15, + numberOfBlocksSlow: 20, fast: MoneroTransactionPriority.fast.raw!, medium: MoneroTransactionPriority.regular.raw!, slow: MoneroTransactionPriority.slow.raw!, diff --git a/lib/services/coins/wownero/wownero_wallet.dart b/lib/services/coins/wownero/wownero_wallet.dart index 686dcd08c..72580ea4a 100644 --- a/lib/services/coins/wownero/wownero_wallet.dart +++ b/lib/services/coins/wownero/wownero_wallet.dart @@ -563,11 +563,11 @@ class WowneroWallet extends CoinServiceAPI { Future? _currentReceivingAddress; Future _getFees() async { - // TODO: not use hard coded values here + // TODO: not use random hard coded values here return FeeObject( numberOfBlocksFast: 10, - numberOfBlocksAverage: 10, - numberOfBlocksSlow: 10, + numberOfBlocksAverage: 15, + numberOfBlocksSlow: 20, fast: MoneroTransactionPriority.fast.raw!, medium: MoneroTransactionPriority.regular.raw!, slow: MoneroTransactionPriority.slow.raw!,