diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-07-01 00:23:18 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-01 00:23:18 -0500 |
commit | 6e3d6f601ac6c0fac37f14d68f324af40a159700 (patch) | |
tree | 0115dd125a7b0180db0cc1a2afed70d233577648 | |
parent | Merge pull request #5676 (diff) | |
parent | rpc: set sanity_check_failed to false when successful (diff) | |
download | monero-6e3d6f601ac6c0fac37f14d68f324af40a159700.tar.xz |
Merge pull request #5684
93eb4d7 rpc: set sanity_check_failed to false when successful (stoffu)
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 3db138719..b6836e636 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -820,6 +820,7 @@ namespace cryptonote res.sanity_check_failed = true; return true; } + res.sanity_check_failed = false; cryptonote_connection_context fake_context = AUTO_VAL_INIT(fake_context); tx_verification_context tvc = AUTO_VAL_INIT(tvc); |