diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-03 11:55:45 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-03 11:55:45 +0100 |
commit | 8028dde7a62bda08be736bd7034420c9a4da93fc (patch) | |
tree | d3cb3cc74110bfaae5be97c06da3e4b330e02ffd /src/cryptonote_protocol | |
parent | Merge pull request #2518 (diff) | |
download | monero-8028dde7a62bda08be736bd7034420c9a4da93fc.tar.xz |
block_queue: use boost::uuids::nil_uuid where appropriate
Diffstat (limited to 'src/cryptonote_protocol')
-rw-r--r-- | src/cryptonote_protocol/block_queue.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cryptonote_protocol/block_queue.cpp b/src/cryptonote_protocol/block_queue.cpp index 64dd1fb50..813167400 100644 --- a/src/cryptonote_protocol/block_queue.cpp +++ b/src/cryptonote_protocol/block_queue.cpp @@ -205,8 +205,7 @@ std::pair<uint64_t, uint64_t> block_queue::reserve_span(uint64_t first_block_hei bool block_queue::is_blockchain_placeholder(const span &span) const { - static const boost::uuids::uuid uuid0 = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; - return span.connection_id == uuid0; + return span.connection_id == boost::uuids::nil_uuid(); } std::pair<uint64_t, uint64_t> block_queue::get_start_gap_span() const |