diff --git a/lib/net/pool.js b/lib/net/pool.js index aedeffc15..b3597d650 100644 --- a/lib/net/pool.js +++ b/lib/net/pool.js @@ -4203,7 +4203,6 @@ class BroadcastItem extends EventEmitter { /** * Add a job to be executed on ack, timeout, or reject. - * @returns {Promise} */ addJob(resolve, reject) { diff --git a/lib/wallet/wallet.js b/lib/wallet/wallet.js index 065b8468c..608b8fd53 100644 --- a/lib/wallet/wallet.js +++ b/lib/wallet/wallet.js @@ -815,7 +815,7 @@ class Wallet extends EventEmitter { * Create a new address (increments depth) without a lock. * @private * @param {(Number|String)?} acct - * @param {Number} branche + * @param {Number} branch * @returns {Promise} - Returns {@link WalletKey}. */ @@ -2019,7 +2019,7 @@ class Wallet extends EventEmitter { if (this.txdb.isLocked(coin)) continue; - // Always used confirmed coins. + // Always use confirmed coins. if (coin.height !== -1) { coins.push(coin); continue;