aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-01-25 16:50:18 -0800
committerRiccardo Spagni <ric@spagni.net>2018-01-25 16:50:18 -0800
commitd25217f05825c02e756852f53bc4ed5158653aec (patch)
treedb85d75bd698069b0f43cbb4effe6f6cefb44844 /src
parentf31f5c9a3ea00ee9c8d7f79c86f77edc29bf2fbc (diff)
parentb56f46457c5553cae91e5dc13ca7cdd5bbc5e597 (diff)
downloadmonzero-core-d25217f05825c02e756852f53bc4ed5158653aec.tar.gz
monzero-core-d25217f05825c02e756852f53bc4ed5158653aec.tar.xz
monzero-core-d25217f05825c02e756852f53bc4ed5158653aec.zip
Merge pull request #3105
b56f4645 cryptonote_protocol: fix size_t used in wire format (moneromooo-monero)
Diffstat (limited to 'src')
-rw-r--r--src/cryptonote_protocol/cryptonote_protocol_defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_defs.h b/src/cryptonote_protocol/cryptonote_protocol_defs.h
index fc2f4c343..a1682ef8c 100644
--- a/src/cryptonote_protocol/cryptonote_protocol_defs.h
+++ b/src/cryptonote_protocol/cryptonote_protocol_defs.h
@@ -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)