Skip to content

Commit

Permalink
chore(blockchain-link): do not fetch solana rpc version
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasklim committed Feb 27, 2025
1 parent 82b2c29 commit 6158765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/blockchain-link/src/workers/solana/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ const getInfo = async (request: Request<MessageTypes.GetInfo>, isTestnet: boolea
network: isTestnet ? 'dsol' : 'sol',
url: api.clusterUrl,
name: 'Solana',
version: (await api.rpc.getVersion().send())['solana-core'],
version: '1', // saving request api.rpc.getVersion().send(), version is not used anyways
decimals: 9,
};

Expand Down

0 comments on commit 6158765

Please sign in to comment.