mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +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 torOnly = args['torOnly'] as bool;
|
||||
double price = 0.0;
|
||||
print("@@@@@@@@@@@@@@");
|
||||
print(crypto);
|
||||
print(fiat);
|
||||
print(torOnly);
|
||||
|
||||
try {
|
||||
final uri = Uri.https(
|
||||
|
@ -40,7 +36,6 @@ Future<double> _fetchPrice(Map<String, dynamic> args) async {
|
|||
if (results.isNotEmpty) {
|
||||
price = results.values.first as double;
|
||||
}
|
||||
print(price);
|
||||
|
||||
return price;
|
||||
} catch (e) {
|
||||
|
|
Loading…
Reference in a new issue