mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
NULL coalesce on CMC script exit (#1346)
This commit is contained in:
parent
115e98cfd0
commit
31f08487b3
|
@ -298,7 +298,7 @@ async function fetchImage(url: string) {
|
||||||
|
|
||||||
function exit(code?: number) {
|
function exit(code?: number) {
|
||||||
printContracts()
|
printContracts()
|
||||||
process.exit(1)
|
process.exit(code ?? 1)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getTotalActiveCryptocurrencies() {
|
function getTotalActiveCryptocurrencies() {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user