Skip to content

Commit

Permalink
fix(erc20): at bounds is a boolean, should default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
plondon committed Aug 2, 2021
1 parent 67f575a commit 67ff558
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -73,7 +73,7 @@ export const getErc20Transactions = (state, token) => {
return path([dataPath, 'eth', 'transactions', token])(state) || Remote.NotAsked
}
export const getErc20TransactionsAtBound = (state, token) => {
return path([dataPath, 'eth', 'transactions_at_bound', token])(state) || Remote.NotAsked
return path([dataPath, 'eth', 'transactions_at_bound', token])(state) || false
}
export const getErc20TransactionHistory = (state, token) => {
return path([dataPath, 'eth', 'transaction_history', token])(state) || Remote.NotAsked
Expand Down

0 comments on commit 67ff558

Please sign in to comment.