diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-16 10:35:34 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-16 11:58:52 +0000 |
commit | bfa2dce171e2a04096c07f204037ccd13dc2fae6 (patch) | |
tree | e1e0adfbdb15830fb9fa5935422e8518f4f08cf2 /src | |
parent | account: init creation timestamp to 0 (diff) | |
download | monero-bfa2dce171e2a04096c07f204037ccd13dc2fae6.tar.xz |
rpc: remove unused ctors
Also prevents coverity from moaning about them not initializing fields
Diffstat (limited to 'src')
-rw-r--r-- | src/rpc/core_rpc_server_commands_defs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rpc/core_rpc_server_commands_defs.h b/src/rpc/core_rpc_server_commands_defs.h index 3b654d4cb..b229841d6 100644 --- a/src/rpc/core_rpc_server_commands_defs.h +++ b/src/rpc/core_rpc_server_commands_defs.h @@ -782,9 +782,6 @@ namespace cryptonote std::string tx_as_hex; bool do_not_relay; - request() {} - explicit request(const transaction &); - BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(tx_as_hex) KV_SERIALIZE_OPT(do_not_relay, false) |