mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-02 03:06:29 +00:00
do not await unnecessarily
This commit is contained in:
parent
e67dbf5c49
commit
2282290b74
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ class SimplexAPI {
|
|||
|
||||
jsonArray['quote'] = quote; // Add and pass this on
|
||||
|
||||
return await _parseQuote(jsonArray);
|
||||
return _parseQuote(jsonArray);
|
||||
} catch (e, s) {
|
||||
Logging.instance.log("getQuote exception: $e\n$s", level: LogLevel.Error);
|
||||
return BuyResponse(
|
||||
|
|
Loading…
Reference in a new issue