diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-06 16:13:17 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-15 09:11:54 +0000 |
commit | 8a61b33d8e36bb31c3de43f0fbc6aa58f3d6805c (patch) | |
tree | 8740fd9a80533b7b05140107504c0b609db8f327 /src/rpc | |
parent | rpc: add relayed in get_transaction output (diff) | |
download | monero-8a61b33d8e36bb31c3de43f0fbc6aa58f3d6805c.tar.xz |
rpc: omit irrelevant fields for pool txes in gettransactions
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/core_rpc_server_commands_defs.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/rpc/core_rpc_server_commands_defs.h b/src/rpc/core_rpc_server_commands_defs.h index 06bec9e7a..29bc17922 100644 --- a/src/rpc/core_rpc_server_commands_defs.h +++ b/src/rpc/core_rpc_server_commands_defs.h @@ -375,10 +375,16 @@ namespace cryptonote KV_SERIALIZE(as_json) KV_SERIALIZE(in_pool) KV_SERIALIZE(double_spend_seen) - KV_SERIALIZE(block_height) - KV_SERIALIZE(block_timestamp) - KV_SERIALIZE(output_indices) - KV_SERIALIZE(relayed) + if (!this_ref.in_pool) + { + KV_SERIALIZE(block_height) + KV_SERIALIZE(block_timestamp) + KV_SERIALIZE(output_indices) + } + else + { + KV_SERIALIZE(relayed) + } END_KV_SERIALIZE_MAP() }; |