diff --git a/clients/nodejs/modules/JsonRpcServer.js b/clients/nodejs/modules/JsonRpcServer.js index 2480d371f..a88eaf63d 100644 --- a/clients/nodejs/modules/JsonRpcServer.js +++ b/clients/nodejs/modules/JsonRpcServer.js @@ -44,6 +44,7 @@ class JsonRpcServer { found |= Nimiq.NetUtils.isIPv4inSubnet(remoteIp, subnet); } if (!found) { + console.log(`RPC: IP ${remoteIp} not allowed access`); res.writeHead(403); res.end(); return;