mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #3105
b56f4645
cryptonote_protocol: fix size_t used in wire format (moneromooo-monero)
This commit is contained in:
commit
d25217f058
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ namespace cryptonote
|
||||||
{
|
{
|
||||||
crypto::hash block_hash;
|
crypto::hash block_hash;
|
||||||
uint64_t current_blockchain_height;
|
uint64_t current_blockchain_height;
|
||||||
std::vector<size_t> missing_tx_indices;
|
std::vector<uint64_t> missing_tx_indices;
|
||||||
|
|
||||||
BEGIN_KV_SERIALIZE_MAP()
|
BEGIN_KV_SERIALIZE_MAP()
|
||||||
KV_SERIALIZE_VAL_POD_AS_BLOB(block_hash)
|
KV_SERIALIZE_VAL_POD_AS_BLOB(block_hash)
|
||||||
|
|
Loading…
Reference in a new issue