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!,