diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-08-22 20:47:28 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-08-22 20:47:28 -0500 |
commit | a5d21be843b88a726920dd2b7e563e85508cfeb1 (patch) | |
tree | 1b9baa6631b87a8b39f914513f47108de2d168a1 /src/rpc/message_data_structs.h | |
parent | Merge pull request #4207 (diff) | |
parent | Fixed ZMQ-RPC for transactions and GET_BLOCKS_FAST (diff) | |
download | monero-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.h | 2 |
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; |