Skip to content

Commit

Permalink
Typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
marilynpereira03 committed Apr 11, 2018
1 parent 33ceca8 commit c81665c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/transactionPool.html
Expand Up @@ -1500,7 +1500,7 @@ <h1>transactionPool.js</h1>
library.logger.error(<span class="hljs-string">'Error cleaning TransactionPool'</span>, err);
}
<span class="hljs-keyword">else</span>{
library.logger.info(<span class="hljs-string">'Cleaned TransactionPool. Unconfirmed transations undone: '</span> + removedIds.length);
library.logger.info(<span class="hljs-string">'Cleaned TransactionPool. Unconfirmed transactions undone: '</span> + removedIds.length);
}
<span class="hljs-keyword">return</span> cb();
});
Expand Down
2 changes: 1 addition & 1 deletion modules/transactionPool.js
Expand Up @@ -485,7 +485,7 @@ TransactionPool.prototype.cleanup = function (cb) {
library.logger.error('Error cleaning TransactionPool', err);
}
else{
library.logger.info('Cleaned TransactionPool. Unconfirmed transations undone: ' + removedIds.length);
library.logger.info('Cleaned TransactionPool. Unconfirmed transactions undone: ' + removedIds.length);
}
return cb();
});
Expand Down

0 comments on commit c81665c

Please sign in to comment.