diff --git a/src/PaymentGate/WalletService.cpp b/src/PaymentGate/WalletService.cpp index f3a91ceb1c..09c4f5b97a 100755 --- a/src/PaymentGate/WalletService.cpp +++ b/src/PaymentGate/WalletService.cpp @@ -1118,7 +1118,7 @@ void WalletService::replaceWithNewWallet(const Crypto::SecretKey& viewSecretKey) if (!boost::filesystem::exists(backup)) { boost::filesystem::rename(config.walletFile, backup); - logger(Logging::DEBUGGING) << "Walled file '" << config.walletFile << "' backed up to '" << backup << '\''; + logger(Logging::DEBUGGING) << "Wallet file '" << config.walletFile << "' backed up to '" << backup << '\''; break; } } diff --git a/src/PaymentGateService/main.cpp b/src/PaymentGateService/main.cpp index 9cb3ff79ae..aaf33f504f 100644 --- a/src/PaymentGateService/main.cpp +++ b/src/PaymentGateService/main.cpp @@ -304,7 +304,7 @@ int main(int argc, char** argv) { return 0; //help message requested or so } - Logging::LoggerRef(pg.getLogger(), "main")(Logging::INFO) << "walled v" << PROJECT_VERSION_LONG; + Logging::LoggerRef(pg.getLogger(), "main")(Logging::INFO) << "walletd v" << PROJECT_VERSION_LONG; const auto& config = pg.getConfig();