aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/message_data_structs.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-08-22 20:47:28 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-08-22 20:47:28 -0500
commita5d21be843b88a726920dd2b7e563e85508cfeb1 (patch)
tree1b9baa6631b87a8b39f914513f47108de2d168a1 /src/rpc/message_data_structs.h
parentMerge pull request #4207 (diff)
parentFixed ZMQ-RPC for transactions and GET_BLOCKS_FAST (diff)
downloadmonero-a5d21be843b88a726920dd2b7e563e85508cfeb1.tar.xz
Merge pull request #4210
4616cf2 Fixed ZMQ-RPC for transactions and GET_BLOCKS_FAST (vtnerd)
Diffstat (limited to 'src/rpc/message_data_structs.h')
-rw-r--r--src/rpc/message_data_structs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/message_data_structs.h b/src/rpc/message_data_structs.h
index fc1b2329d..20390aee8 100644
--- a/src/rpc/message_data_structs.h
+++ b/src/rpc/message_data_structs.h
@@ -44,7 +44,7 @@ namespace rpc
struct block_with_transactions
{
cryptonote::block block;
- std::unordered_map<crypto::hash, cryptonote::transaction> transactions;
+ std::vector<cryptonote::transaction> transactions;
};
typedef std::vector<uint64_t> tx_output_indices;