cmd, crypto, eth, internals: fix Typos (#19868)

This commit is contained in:
Kitten King
2019-07-22 13:04:33 +05:30
committed by Péter Szilágyi
parent 5183483c53
commit cc3ef1e4f4
5 changed files with 10 additions and 10 deletions

View File

@ -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
*/