Skip to content

Commit

Permalink
useless: delete logging on index.js and delete incremental barrier
Browse files Browse the repository at this point in the history
Signed-off-by: Salman Wahib <[email protected]>
  • Loading branch information
sxlmnwb committed Aug 18, 2023
1 parent 82caf5d commit e6485d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const start = async () => {
const reply = await useCommand(msg, client, chat);
if (reply) {
msg.reply(reply);
console.log(reply)
}
});

Expand Down
4 changes: 2 additions & 2 deletions src/useLoopReq.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ module.exports = {
if (networks[networkInput] && networks[networkInput].lastStatusMainnet) {

if(count > 0) {
statusMessage += `\n------------------------------------------------------------------\n`;
statusMessage += `\n---------------------------------------------------------------\n`;
}
statusMessage += networks[networkInput].lastStatusMainnet;
count++;
Expand Down Expand Up @@ -186,7 +186,7 @@ module.exports = {
if (networks[networkInput] && networks[networkInput].lastStatusTestnet) {

if(count > 0) {
statusMessage += `\n------------------------------------------------------------------\n`;
statusMessage += `\n---------------------------------------------------------------\n`;
}
statusMessage += networks[networkInput].lastStatusTestnet;
count++;
Expand Down

0 comments on commit e6485d7

Please sign in to comment.