You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current version of code actually does not work. ):
The issue is related with the Elliptic version required in package.json.
The npm install command will try to install "^6.4.0" Elliptic version, which refers now to the 6.4.1 version. This Elliptics version have some different methods call, implying that the code no longer compile.
One alternative is require the specific Elliptic version, e.g.: "elliptic":"6.4.0"
The text was updated successfully, but these errors were encountered:
The current version of code actually does not work. ):
The issue is related with the Elliptic version required in package.json.
The
npm install
command will try to install "^6.4.0" Elliptic version, which refers now to the 6.4.1 version. This Elliptics version have some different methods call, implying that the code no longer compile.One alternative is require the specific Elliptic version, e.g.:
"elliptic":"6.4.0"
The text was updated successfully, but these errors were encountered: