From f3349b9dd619f2be1946c4526dbe081d4c63d45c Mon Sep 17 00:00:00 2001 From: selsta Date: Tue, 14 Jan 2025 11:17:43 +0100 Subject: [PATCH] daemon: fix log message typo --- src/daemon/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon/main.cpp b/src/daemon/main.cpp index 4496f6d6e..3ae821284 100644 --- a/src/daemon/main.cpp +++ b/src/daemon/main.cpp @@ -243,7 +243,7 @@ int main(int argc, char const * argv[]) const bool regtest = command_line::get_arg(vm, cryptonote::arg_regtest_on); if (testnet + stagenet + regtest > 1) { - std::cerr << "Can't specify more than one of --tesnet and --stagenet and --regtest" << ENDL; + std::cerr << "Can't specify more than one of --testnet and --stagenet and --regtest" << ENDL; return 1; }