Skip to content

Commit

Permalink
Fixed quicknode property for defaultProvider (ethers-io#3741).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo authored and Woodpile37 committed Jan 14, 2024
1 parent f287f6f commit 03fc3c5
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 03fc3c5

Please sign in to comment.