diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-10-15 18:34:26 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-10-15 18:34:26 +0200 |
commit | 1e577e8fbf803901e6b4b612015bf365d2e5c96e (patch) | |
tree | ab9f071a4f023113b22de9cffa57132c4ffabdc6 | |
parent | Merge pull request #2570 (diff) | |
parent | block_queue: use boost::uuids::nil_uuid where appropriate (diff) | |
download | monero-1e577e8fbf803901e6b4b612015bf365d2e5c96e.tar.xz |
Merge pull request #2571
8028dde7 block_queue: use boost::uuids::nil_uuid where appropriate (moneromooo-monero)
-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 |