diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-07-01 00:22:07 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-01 00:22:07 -0500 |
| commit | 2db997828a76d5d127b7a8dae35e5f046008300d (patch) | |
| tree | 7d4d3b26438be597e6915982a7670fe7e73ade57 /src/rpc | |
| parent | 393c33f86cab69f9877f1ab11cdb1c11cdcd0cd3 (diff) | |
| parent | 15c699f0a6661f1ecd721a2e6855f48d4c2cda43 (diff) | |
| download | monzero-core-2db997828a76d5d127b7a8dae35e5f046008300d.tar.gz monzero-core-2db997828a76d5d127b7a8dae35e5f046008300d.tar.xz monzero-core-2db997828a76d5d127b7a8dae35e5f046008300d.zip | |
Merge pull request #5678
15c699f rpc: set sanity_check_failed to false when successful (stoffu)
Diffstat (limited to 'src/rpc')
| -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); |
