Skip to content
This repository was archived by the owner on Aug 12, 2023. It is now read-only.

Commit fea3ba5

Browse files
authored
Fix token cache bug (#235)
1 parent 3e17026 commit fea3ba5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/tokens/token-cache.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ const initialise = async tokens => {
1414
}).lean();
1515

1616
keyedTokens = _.keyBy(loadedTokens, 'address');
17+
logger.success(
18+
`initialised token cache with ${loadedTokens.length} tokens`,
19+
);
1720
} else {
1821
keyedTokens = _.keyBy(tokens, 'address');
1922
}
20-
21-
logger.success(`initialised token cache with ${tokens.length} tokens`);
2223
};
2324

2425
const getTokens = () => _.clone(keyedTokens);

0 commit comments

Comments
 (0)