mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
remove print statements [skip ci]
This commit is contained in:
parent
fdfa21923c
commit
18af7e7661
1 changed files with 0 additions and 5 deletions
|
@ -13,10 +13,6 @@ Future<double> _fetchPrice(Map<String, dynamic> args) async {
|
||||||
final fiat = args['fiat'] as FiatCurrency;
|
final fiat = args['fiat'] as FiatCurrency;
|
||||||
final torOnly = args['torOnly'] as bool;
|
final torOnly = args['torOnly'] as bool;
|
||||||
double price = 0.0;
|
double price = 0.0;
|
||||||
print("@@@@@@@@@@@@@@");
|
|
||||||
print(crypto);
|
|
||||||
print(fiat);
|
|
||||||
print(torOnly);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
final uri = Uri.https(
|
final uri = Uri.https(
|
||||||
|
@ -40,7 +36,6 @@ Future<double> _fetchPrice(Map<String, dynamic> args) async {
|
||||||
if (results.isNotEmpty) {
|
if (results.isNotEmpty) {
|
||||||
price = results.values.first as double;
|
price = results.values.first as double;
|
||||||
}
|
}
|
||||||
print(price);
|
|
||||||
|
|
||||||
return price;
|
return price;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in a new issue