Skip to content

Commit

Permalink
Fix solana relay cache key (#8219)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickyrombo authored Apr 24, 2024
1 parent deb3f2a commit 5ad42e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type DiscoveryNode = {

export const getCachedDiscoveryNodes = async () => {
const redis = await getRedisConnection()
const key = 'all-discovery-nodes'
const key = 'all-discovery-nodes-with-wallets'
const json = await redis.get(key)
return parseArray(json).filter(
(p): p is DiscoveryNode =>
Expand Down

0 comments on commit 5ad42e0

Please sign in to comment.