diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-07-08 17:12:43 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-07-08 17:12:43 -0500 |
| commit | be170c485c86e4b79918c8dbacd0bde5eaf901c6 (patch) | |
| tree | 5d59920c54d2b971c6741832fa6bb48815dc3416 /src/rpc/core_rpc_server.cpp | |
| parent | 8b3fa2d3732f7137311f6c2048baf76622b1e38d (diff) | |
| parent | 78d435a5fae047ba9774cb6b43241e44322e77c0 (diff) | |
| download | monzero-core-be170c485c86e4b79918c8dbacd0bde5eaf901c6.tar.gz monzero-core-be170c485c86e4b79918c8dbacd0bde5eaf901c6.tar.xz monzero-core-be170c485c86e4b79918c8dbacd0bde5eaf901c6.zip | |
Merge pull request #6584
78d435a rpc: don't display invalid json errors on default log level (moneromooo-monero)
Diffstat (limited to 'src/rpc/core_rpc_server.cpp')
| -rw-r--r-- | src/rpc/core_rpc_server.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 062386087..213d9c702 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -270,25 +270,25 @@ namespace cryptonote { if (!m_restricted && nettype() != FAKECHAIN) { - MERROR("RPC payment enabled, but server is not restricted, anyone can adjust their balance to bypass payment"); + MFATAL("RPC payment enabled, but server is not restricted, anyone can adjust their balance to bypass payment"); return false; } cryptonote::address_parse_info info; if (!get_account_address_from_str(info, nettype(), address)) { - MERROR("Invalid payment address: " << address); + MFATAL("Invalid payment address: " << address); return false; } if (info.is_subaddress) { - MERROR("Payment address may not be a subaddress: " << address); + MFATAL("Payment address may not be a subaddress: " << address); return false; } uint64_t diff = command_line::get_arg(vm, arg_rpc_payment_difficulty); uint64_t credits = command_line::get_arg(vm, arg_rpc_payment_credits); if (diff == 0 || credits == 0) { - MERROR("Payments difficulty and/or payments credits are 0, but a payment address was given"); + MFATAL("Payments difficulty and/or payments credits are 0, but a payment address was given"); return false; } m_rpc_payment_allow_free_loopback = command_line::get_arg(vm, arg_rpc_payment_allow_free_loopback); @@ -308,7 +308,7 @@ namespace cryptonote if (!set_bootstrap_daemon(command_line::get_arg(vm, arg_bootstrap_daemon_address), command_line::get_arg(vm, arg_bootstrap_daemon_login))) { - MERROR("Failed to parse bootstrap daemon address"); + MFATAL("Failed to parse bootstrap daemon address"); return false; } |
