mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
Merge branch 'staging' into widget-tests
This commit is contained in:
commit
52a65c8a67
1 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ class PriceAPI {
|
|||
}
|
||||
|
||||
final externalCalls = Prefs.instance.externalCalls;
|
||||
if (!externalCalls) {
|
||||
if (!Logger.isTestEnv && !externalCalls) {
|
||||
Logging.instance.log("User does not want to use external calls",
|
||||
level: LogLevel.Info);
|
||||
return _cachedPrices;
|
||||
|
@ -124,7 +124,7 @@ class PriceAPI {
|
|||
|
||||
static Future<List<String>?> availableBaseCurrencies() async {
|
||||
final externalCalls = Prefs.instance.externalCalls;
|
||||
if (!externalCalls) {
|
||||
if (!Logger.isTestEnv && !externalCalls) {
|
||||
Logging.instance.log("User does not want to use external calls",
|
||||
level: LogLevel.Info);
|
||||
return null;
|
||||
|
|
Loading…
Reference in a new issue