mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 20:19:25 +00:00
fix interval_count
This commit is contained in:
parent
3f967191e5
commit
2f511dc2e7
2 changed files with 11 additions and 10 deletions
|
@ -58,7 +58,7 @@ Future<double> _fetchHistoricalPrice(Map<String, dynamic> args) async {
|
|||
final intervalFromNow = DateTime.now().difference(date).inMinutes;
|
||||
|
||||
final Map<String, String> queryParams = {
|
||||
'interval_count': '5',
|
||||
'interval_count': '2',
|
||||
'base': crypto.toString(),
|
||||
'quote': fiat.toString(),
|
||||
'key': secrets.fiatApiKey,
|
||||
|
@ -93,6 +93,7 @@ Future<double> _fetchHistoricalPrice(Map<String, dynamic> args) async {
|
|||
if (results.isNotEmpty) {
|
||||
price = results.values.first as double;
|
||||
}
|
||||
print('results.key: ${results.keys.first} results.value: ${results.values.first}');
|
||||
|
||||
return price;
|
||||
} catch (e) {
|
||||
|
|
|
@ -34,12 +34,8 @@ abstract class TransactionDetailsViewModelBase with Store {
|
|||
isRecipientAddressShown = false,
|
||||
showRecipientAddress = settingsStore.shouldSaveRecipientAddress,
|
||||
fiatRateListItem = StandartListItem(
|
||||
title: settingsStore.showHistoricalFiatRate
|
||||
? S.current.historical_fiat_rate
|
||||
: S.current.fiat_rate,
|
||||
value: settingsStore.showHistoricalFiatRate
|
||||
? '${S.current.fetching.toLowerCase()} ...'
|
||||
: transactionInfo.fiatAmount() + ' ${settingsStore.fiatCurrency}') {
|
||||
title: S.current.historical_fiat_rate,
|
||||
value: '${S.current.fetching.toLowerCase()} ...') {
|
||||
final dateFormat = DateFormatter.withCurrentLocal();
|
||||
final tx = transactionInfo;
|
||||
|
||||
|
@ -62,7 +58,8 @@ abstract class TransactionDetailsViewModelBase with Store {
|
|||
if (feeFormatted != null)
|
||||
StandartListItem(
|
||||
title: S.current.transaction_details_fee, value: feeFormatted),
|
||||
if (settingsStore.fiatApiMode != FiatApiMode.disabled)
|
||||
if (settingsStore.fiatApiMode != FiatApiMode.disabled &&
|
||||
settingsStore.showHistoricalFiatRate)
|
||||
fiatRateListItem,
|
||||
if (key?.isNotEmpty ?? false)
|
||||
StandartListItem(title: S.current.transaction_key, value: key!)
|
||||
|
@ -118,7 +115,8 @@ abstract class TransactionDetailsViewModelBase with Store {
|
|||
StandartListItem(
|
||||
title: S.current.transaction_details_fee,
|
||||
value: tx.feeFormatted()!),
|
||||
if (settingsStore.fiatApiMode != FiatApiMode.disabled)
|
||||
if (settingsStore.fiatApiMode != FiatApiMode.disabled &&
|
||||
settingsStore.showHistoricalFiatRate)
|
||||
fiatRateListItem,
|
||||
];
|
||||
|
||||
|
@ -140,7 +138,8 @@ abstract class TransactionDetailsViewModelBase with Store {
|
|||
if (tx.feeFormatted()?.isNotEmpty ?? false)
|
||||
StandartListItem(
|
||||
title: S.current.transaction_details_fee, value: tx.feeFormatted()!),
|
||||
if (settingsStore.fiatApiMode != FiatApiMode.disabled)
|
||||
if (settingsStore.fiatApiMode != FiatApiMode.disabled &&
|
||||
settingsStore.showHistoricalFiatRate)
|
||||
fiatRateListItem,
|
||||
]);
|
||||
}
|
||||
|
@ -228,6 +227,7 @@ abstract class TransactionDetailsViewModelBase with Store {
|
|||
default:
|
||||
formattedFiatAmount;
|
||||
}
|
||||
|
||||
final historicalFiatAmountFormatted = formattedFiatAmount * historicalFiatRate;
|
||||
items[fiatRateItemIndex] = StandartListItem(
|
||||
title: S.current.historical_fiat_rate,
|
||||
|
|
Loading…
Reference in a new issue