Merge pull request #3105

b56f4645 cryptonote_protocol: fix size_t used in wire format (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-01-25 16:50:18 -08:00
commit d25217f058
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -271,7 +271,7 @@ namespace cryptonote
{
crypto::hash block_hash;
uint64_t current_blockchain_height;
std::vector<size_t> missing_tx_indices;
std::vector<uint64_t> missing_tx_indices;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE_VAL_POD_AS_BLOB(block_hash)