aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorKitten King <53072918+kittenking@users.noreply.github.com>2019-07-22 15:34:33 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-07-22 15:34:33 +0800
commitcc3ef1e4f48dc305c942bc2259b3121210206686 (patch)
treef8f5fbb28b143cb11bdca604faff40af4e9f05ca /internal
parent5183483c53fac7ad5d31759ecb95ca7b1a67744d (diff)
downloadgo-tangerine-cc3ef1e4f48dc305c942bc2259b3121210206686.tar
go-tangerine-cc3ef1e4f48dc305c942bc2259b3121210206686.tar.gz
go-tangerine-cc3ef1e4f48dc305c942bc2259b3121210206686.tar.bz2
go-tangerine-cc3ef1e4f48dc305c942bc2259b3121210206686.tar.lz
go-tangerine-cc3ef1e4f48dc305c942bc2259b3121210206686.tar.xz
go-tangerine-cc3ef1e4f48dc305c942bc2259b3121210206686.tar.zst
go-tangerine-cc3ef1e4f48dc305c942bc2259b3121210206686.zip
cmd, crypto, eth, internals: fix Typos (#19868)
Diffstat (limited to 'internal')
-rw-r--r--internal/jsre/deps/web3.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/internal/jsre/deps/web3.js b/internal/jsre/deps/web3.js
index df920bb1d..07418d056 100644
--- a/internal/jsre/deps/web3.js
+++ b/internal/jsre/deps/web3.js
@@ -2231,7 +2231,7 @@ var toTwosComplement = function (number) {
* Checks if the given string is strictly an address
*
* @method isStrictAddress
- * @param {String} address the given HEX adress
+ * @param {String} address the given HEX address
* @return {Boolean}
*/
var isStrictAddress = function (address) {
@@ -2242,7 +2242,7 @@ var isStrictAddress = function (address) {
* Checks if the given string is an address
*
* @method isAddress
- * @param {String} address the given HEX adress
+ * @param {String} address the given HEX address
* @return {Boolean}
*/
var isAddress = function (address) {
@@ -2262,7 +2262,7 @@ var isAddress = function (address) {
* Checks if the given string is a checksummed address
*
* @method isChecksumAddress
- * @param {String} address the given HEX adress
+ * @param {String} address the given HEX address
* @return {Boolean}
*/
var isChecksumAddress = function (address) {
@@ -2285,7 +2285,7 @@ var isChecksumAddress = function (address) {
* Makes a checksum address
*
* @method toChecksumAddress
- * @param {String} address the given HEX adress
+ * @param {String} address the given HEX address
* @return {String}
*/
var toChecksumAddress = function (address) {
@@ -3003,7 +3003,7 @@ var ContractFactory = function (eth, abi) {
if (callback) {
- // wait for the contract address adn check if the code was deployed
+ // wait for the contract address and check if the code was deployed
this.eth.sendTransaction(options, function (err, hash) {
if (err) {
callback(err);
@@ -6735,7 +6735,7 @@ var transferToAddress = function (eth, from, to, value, callback) {
* @method deposit
* @param {String} from
* @param {String} to
- * @param {Value} value to be transfered
+ * @param {Value} value to be transferred
* @param {String} client unique identifier
* @param {Function} callback, callback
*/