Skip to content

Commit

Permalink
Fixed quicknode property for defaultProvider (#3741).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Feb 16, 2023
1 parent 085a905 commit a8afb72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src.ts/providers/default-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export function getDefaultProvider(network: string | Networkish | WebSocketLike,
*/
if (options.quicknode !== "-") {
try {
let token = options.qquicknode;
let token = options.quicknode;
providers.push(new QuickNodeProvider(network, token));
} catch (error) { console.log(error); }
}
Expand Down

0 comments on commit a8afb72

Please sign in to comment.