From 252c6cb09507721d7bb1d8d80f5eb18b85b3787c Mon Sep 17 00:00:00 2001 From: MoneroOcean <33983510+MoneroOcean@users.noreply.github.com> Date: Fri, 22 May 2026 11:58:52 -0700 Subject: [PATCH] Use existing suffix masking style in verify queue logs --- lib/coins/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/coins/index.js b/lib/coins/index.js index 00daefa0..7979d762 100644 --- a/lib/coins/index.js +++ b/lib/coins/index.js @@ -209,7 +209,10 @@ if (global.config.verify_shares_host) global.config.verify_shares_host.forEach(f }); console.error(global.database.thread_id + "Share verify queue " + queueIndex + " state: " + queue_obj.length() + " items in the queue " + queue_obj.running() + " items being processed"); Object.keys(miner_address).forEach(function reportMiner(key) { - if (miner_address[key] > 100) console.error("Too many shares from " + key + ": " + miner_address[key]); + if (miner_address[key] > 100) { + const minerKey = String(key || ""); + console.error("Too many shares from " + minerKey.substr(minerKey.length - 10) + ": " + miner_address[key]); + } }); }, 30 * 1000, shareVerifyQueue[index], index); });