From e70ce5a6cfe8b6ed20450f0403b615e6c8d50b52 Mon Sep 17 00:00:00 2001 From: snoppy Date: Thu, 28 Mar 2024 09:03:35 +0800 Subject: [PATCH] chore: fix typos --- 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 e7f1c87f16..c6e03b3afb 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; }; /** @@ -3151,7 +3151,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'); } };