aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorel00ruobuob <bruno.labour@gmail.com>2018-09-02 23:50:31 +0200
committerel00ruobuob <bruno.labour@gmail.com>2018-09-02 23:50:31 +0200
commit45c85c89deea1de48229aa4a31154a8774a651fc (patch)
tree55544326bbd83f329969d4491183471d78e20d1b
parentMerge pull request #4223 (diff)
downloadmonero-45c85c89deea1de48229aa4a31154a8774a651fc.tar.xz
remove unused fields from relay_tx RPC
-rw-r--r--src/wallet/wallet_rpc_server_commands_defs.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/wallet/wallet_rpc_server_commands_defs.h b/src/wallet/wallet_rpc_server_commands_defs.h
index 3f946eaed..4a2e7bca4 100644
--- a/src/wallet/wallet_rpc_server_commands_defs.h
+++ b/src/wallet/wallet_rpc_server_commands_defs.h
@@ -768,15 +768,9 @@ namespace wallet_rpc
struct response
{
std::string tx_hash;
- std::string tx_key;
- uint64_t fee;
- std::string tx_blob;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(tx_hash)
- KV_SERIALIZE(tx_key)
- KV_SERIALIZE(fee)
- KV_SERIALIZE(tx_blob)
END_KV_SERIALIZE_MAP()
};
};