sanity check: change to false #5434

master
wowario 5 years ago
parent aff20484c3
commit 1730faf01a
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -1114,7 +1114,7 @@ namespace cryptonote
{ {
res.status = "Failed"; res.status = "Failed";
res.reason = "Sanity check failed"; res.reason = "Sanity check failed";
res.sanity_check_failed = true; res.sanity_check_failed = false;
return true; return true;
} }
res.sanity_check_failed = false; res.sanity_check_failed = false;

@ -571,7 +571,7 @@ namespace cryptonote
KV_SERIALIZE_PARENT(rpc_access_request_base); KV_SERIALIZE_PARENT(rpc_access_request_base);
KV_SERIALIZE(tx_as_hex) KV_SERIALIZE(tx_as_hex)
KV_SERIALIZE_OPT(do_not_relay, false) KV_SERIALIZE_OPT(do_not_relay, false)
KV_SERIALIZE_OPT(do_sanity_checks, true) KV_SERIALIZE_OPT(do_sanity_checks, false)
END_KV_SERIALIZE_MAP() END_KV_SERIALIZE_MAP()
}; };
typedef epee::misc_utils::struct_init<request_t> request; typedef epee::misc_utils::struct_init<request_t> request;

@ -6364,7 +6364,7 @@ void wallet2::commit_tx(pending_tx& ptx)
COMMAND_RPC_SEND_RAW_TX::request req; COMMAND_RPC_SEND_RAW_TX::request req;
req.tx_as_hex = epee::string_tools::buff_to_hex_nodelimer(tx_to_blob(ptx.tx)); req.tx_as_hex = epee::string_tools::buff_to_hex_nodelimer(tx_to_blob(ptx.tx));
req.do_not_relay = false; req.do_not_relay = false;
req.do_sanity_checks = true; req.do_sanity_checks = false;
COMMAND_RPC_SEND_RAW_TX::response daemon_send_resp; COMMAND_RPC_SEND_RAW_TX::response daemon_send_resp;
{ {

@ -52,7 +52,7 @@ class Daemon(object):
return self.rpc.send_json_rpc_request(getblocktemplate) return self.rpc.send_json_rpc_request(getblocktemplate)
get_block_template = getblocktemplate get_block_template = getblocktemplate
def send_raw_transaction(self, tx_as_hex, do_not_relay = False, do_sanity_checks = True, client = ""): def send_raw_transaction(self, tx_as_hex, do_not_relay = False, do_sanity_checks = False, client = ""):
send_raw_transaction = { send_raw_transaction = {
'client': client, 'client': client,
'tx_as_hex': tx_as_hex, 'tx_as_hex': tx_as_hex,

Loading…
Cancel
Save