Add end quotes

This commit is contained in:
softsimon
2023-05-01 00:16:23 +04:00
parent ac240398ef
commit 58b08f2c33
2 changed files with 2 additions and 2 deletions

View File

@@ -707,7 +707,7 @@ class Blocks {
timer: null,
};
state.timer = setTimeout(() => {
logger.err(`$updateBlocks stalled at "${state.progress}`);
logger.err(`$updateBlocks stalled at "${state.progress}"`);
}, this.mainLoopTimeout);
return state;
}

View File

@@ -250,7 +250,7 @@ class Mempool {
timer: null,
};
state.timer = setTimeout(() => {
logger.err(`$updateMempool stalled at "${state.progress}`);
logger.err(`$updateMempool stalled at "${state.progress}"`);
}, this.mainLoopTimeout);
return state;
}