From a896b880f2a6b4c3f7e754cfc5f0bc93647086fd Mon Sep 17 00:00:00 2001 From: Steven Luscher Date: Thu, 7 Nov 2024 10:14:47 -0800 Subject: [PATCH] Update URLs to point specifically to v1 of the `@solana/web3.js` docs --- src/lib/logs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/logs.ts b/src/lib/logs.ts index 94eaea1..11c84df 100644 --- a/src/lib/logs.ts +++ b/src/lib/logs.ts @@ -20,7 +20,7 @@ export const getErrorFromRPCResponse = ( ) => { // Note: `confirmTransaction` does not throw an error if the confirmation does not succeed, // but rather a `TransactionError` object. so we handle that here - // See https://solana-labs.github.io/solana-web3.js/classes/Connection.html#confirmTransaction.confirmTransaction-1 + // See https://solana-labs.github.io/solana-web3.js/v1.x/classes/Connection.html#confirmTransaction.confirmTransaction-1 const error = rpcResponse.value.err; if (error) {