From 3267c21c58c6e518e350813c3bc6fdc31876b3d2 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Tue, 17 Jun 2025 12:48:05 +0200 Subject: [PATCH] Update web3.js --- internal/jsre/deps/web3.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js index 0aa738a2af..2bcfcdb232 100644 --- a/internal/jsre/deps/web3.js +++ b/internal/jsre/deps/web3.js @@ -1405,7 +1405,7 @@ var SolidityType = function (config) { * @return {Bool} true if type match this SolidityType, otherwise false */ SolidityType.prototype.isType = function (name) { - throw "this method should be overrwritten for type " + name; + throw "this method should be overwritten for type " + name; }; /** @@ -3143,7 +3143,7 @@ module.exports = { return new Error(message); }, ConnectionTimeout: function (ms){ - return new Error('CONNECTION TIMEOUT: timeout of ' + ms + ' ms achived'); + return new Error('CONNECTION TIMEOUT: timeout of ' + ms + ' ms achieved'); } };