Skip to content

Commit bfeb5b6

Browse files
committed
Improve error logging for missing token prices
1 parent 7d73145 commit bfeb5b6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

blockchain/prices.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ export function createTokenPriceInUSD$(
118118
[token]: new BigNumber(tokenPrice),
119119
})
120120
} catch (err) {
121-
console.error(`could not find price for ${token} - no ticker configured`)
121+
console.error(`could not find price for ${token}`)
122+
console.error(err)
122123

123124
return of({})
124125
}

0 commit comments

Comments
 (0)