Split pool daemon into mining and observer roles
Some checks failed
CodeQL / Analyze (javascript) (push) Failing after 36s

This commit is contained in:
Codex Bot
2026-03-21 19:32:14 +01:00
parent 0cd6cd6af2
commit cc1c288f52
9 changed files with 235 additions and 121 deletions

View File

@@ -75,7 +75,7 @@ global.log = function (severity, system, text, data) {
if (logConsole) {
if (config.logging.console.colors)
if (system === 'daemon') {
if (system === 'daemon' || system === 'miningSource' || system === 'chainObserver') {
console.log(severityMap[severity](time) + clc.green.bold(' [' + system + '] ' + formattedMessage));
}
else {