random hardcoded values :/

This commit is contained in:
julian 2022-11-23 12:42:08 -06:00
parent ffe9a83abf
commit 85b9fdc2f3
2 changed files with 6 additions and 6 deletions

View file

@ -564,11 +564,11 @@ class MoneroWallet extends CoinServiceAPI {
Future<String>? _currentReceivingAddress; Future<String>? _currentReceivingAddress;
Future<FeeObject> _getFees() async { Future<FeeObject> _getFees() async {
// TODO: not use hard coded values here // TODO: not use random hard coded values here
return FeeObject( return FeeObject(
numberOfBlocksFast: 10, numberOfBlocksFast: 10,
numberOfBlocksAverage: 10, numberOfBlocksAverage: 15,
numberOfBlocksSlow: 10, numberOfBlocksSlow: 20,
fast: MoneroTransactionPriority.fast.raw!, fast: MoneroTransactionPriority.fast.raw!,
medium: MoneroTransactionPriority.regular.raw!, medium: MoneroTransactionPriority.regular.raw!,
slow: MoneroTransactionPriority.slow.raw!, slow: MoneroTransactionPriority.slow.raw!,

View file

@ -563,11 +563,11 @@ class WowneroWallet extends CoinServiceAPI {
Future<String>? _currentReceivingAddress; Future<String>? _currentReceivingAddress;
Future<FeeObject> _getFees() async { Future<FeeObject> _getFees() async {
// TODO: not use hard coded values here // TODO: not use random hard coded values here
return FeeObject( return FeeObject(
numberOfBlocksFast: 10, numberOfBlocksFast: 10,
numberOfBlocksAverage: 10, numberOfBlocksAverage: 15,
numberOfBlocksSlow: 10, numberOfBlocksSlow: 20,
fast: MoneroTransactionPriority.fast.raw!, fast: MoneroTransactionPriority.fast.raw!,
medium: MoneroTransactionPriority.regular.raw!, medium: MoneroTransactionPriority.regular.raw!,
slow: MoneroTransactionPriority.slow.raw!, slow: MoneroTransactionPriority.slow.raw!,