Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Сorrected tutorial code snippet #1240

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ The front-end doesn't use a build system (webpack, grunt, etc.) to be as easy as
App.web3Provider = window.ethereum;
try {
// Request account access
await window.ethereum.request({ method: "eth_requestAccounts" });;
await window.ethereum.request({ method: "eth_requestAccounts" });
} catch (error) {
// User denied account access...
console.error("User denied account access")
Expand Down