From 6d716993fdb312a9ae1d0ff214ed4a22b9026960 Mon Sep 17 00:00:00 2001 From: Eric Pelland Date: Fri, 21 Oct 2022 19:48:05 -0400 Subject: [PATCH] update http response --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 893963b..b3eaf4e 100644 --- a/index.js +++ b/index.js @@ -70,7 +70,7 @@ function writeToFile(filename, message) { } app.get("/", (req, res) => { - res.status(200).send("Addresses tested: " + count + "
" + "Balances Found: " + found_count); + res.status(200).send("Random Ethereum ScannerAddresses tested: " + count + "
" + "Balances Found: " + found_count + ""); }); app.listen(port, () => {