diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-01-16 11:15:01 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-01-16 11:15:01 +0000 |
commit | e0404d35febeaca05b92df19165ce9f49d0dcbe3 (patch) | |
tree | 0f89a92ef3665fb6878ea034266f5e368fcb71e3 /src | |
parent | Merge pull request #3091 (diff) | |
download | monero-e0404d35febeaca05b92df19165ce9f49d0dcbe3.tar.xz |
rpc: default do_not_relay to false in sendrawtransaction
Diffstat (limited to 'src')
-rw-r--r-- | src/rpc/core_rpc_server_commands_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/core_rpc_server_commands_defs.h b/src/rpc/core_rpc_server_commands_defs.h index ad0bff077..2230141d5 100644 --- a/src/rpc/core_rpc_server_commands_defs.h +++ b/src/rpc/core_rpc_server_commands_defs.h @@ -836,7 +836,7 @@ namespace cryptonote BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(tx_as_hex) - KV_SERIALIZE(do_not_relay) + KV_SERIALIZE_OPT(do_not_relay, false) END_KV_SERIALIZE_MAP() }; |