mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
25 lines
No EOL
519 B
Dart
25 lines
No EOL
519 B
Dart
import 'package:cake_wallet/entities/transaction_priority.dart';
|
|
|
|
double calculateEstimatedFee({TransactionPriority priority}) {
|
|
if (priority == TransactionPriority.slow) {
|
|
return 0.00002459;
|
|
}
|
|
|
|
if (priority == TransactionPriority.regular) {
|
|
return 0.00012305;
|
|
}
|
|
|
|
if (priority == TransactionPriority.medium) {
|
|
return 0.00024503;
|
|
}
|
|
|
|
if (priority == TransactionPriority.fast) {
|
|
return 0.00061453;
|
|
}
|
|
|
|
if (priority == TransactionPriority.fastest) {
|
|
return 0.0260216;
|
|
}
|
|
|
|
return 0;
|
|
} |