From 418c9b3b83190486a431843b10bbdc63c58d6f8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Thu, 21 Mar 2024 13:06:30 +0100 Subject: [PATCH] Compilation fix --- nano/node/election.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nano/node/election.hpp b/nano/node/election.hpp index b549ecdbb8..579dc5dca1 100644 --- a/nano/node/election.hpp +++ b/nano/node/election.hpp @@ -128,7 +128,7 @@ class election final : public std::enable_shared_from_this * Process vote. Internally uses cooldown to throttle non-final votes * If the election reaches consensus, it will be confirmed */ - nano::vote_code vote (nano::account const & representative, uint64_t timestamp, nano::block_hash const & block_hash, nano::vote_source = vote_source::live); + nano::vote_code vote (nano::account const & representative, uint64_t timestamp, nano::block_hash const & block_hash, nano::vote_source = nano::vote_source::live); bool publish (std::shared_ptr const & block_a); // Confirm this block if quorum is met void confirm_if_quorum (nano::unique_lock &);