mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-23 19:05:51 +00:00
random hardcoded values :/
This commit is contained in:
parent
ffe9a83abf
commit
85b9fdc2f3
2 changed files with 6 additions and 6 deletions
|
@ -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!,
|
||||||
|
|
|
@ -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!,
|
||||||
|
|
Loading…
Reference in a new issue