Fixed ZMQ-RPC for transactions and GET_BLOCKS_FAST

This commit is contained in:
Lee Clagett 2018-08-01 22:10:09 -04:00
parent 702a41034d
commit 4616cf2641
7 changed files with 427 additions and 196 deletions

View file

@ -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;