mirror of
https://github.com/tornadocash/tornado-relayer.git
synced 2025-07-22 22:41:04 -04:00
small fix for coingecko
This commit is contained in:
parent
87572cd499
commit
e236fade58
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ function getMainnetTokens() {
|
||||||
Object.entries(tokens).map(([currency, data]) => {
|
Object.entries(tokens).map(([currency, data]) => {
|
||||||
if (currency !== 'eth') {
|
if (currency !== 'eth') {
|
||||||
tokenAddresses.push(data.tokenAddress)
|
tokenAddresses.push(data.tokenAddress)
|
||||||
currencyLookup[data.tokenAddress] = currency
|
currencyLookup[data.tokenAddress.toLowerCase()] = currency
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return { tokenAddresses, currencyLookup }
|
return { tokenAddresses, currencyLookup }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue