update http response

This commit is contained in:
Eric Pelland 2022-10-21 19:48:05 -04:00
parent 6541a21d06
commit 6d716993fd
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ function writeToFile(filename, message) {
} }
app.get("/", (req, res) => { app.get("/", (req, res) => {
res.status(200).send("Addresses tested: " + count + "<br>" + "Balances Found: " + found_count); res.status(200).send("<html><head><title>Random Ethereum Scanner</title></head><body>Addresses tested: " + count + "<br>" + "Balances Found: " + found_count + "</body></html>");
}); });
app.listen(port, () => { app.listen(port, () => {