From e6aec5758b44e64256e838d5c58d7032a73efbfa Mon Sep 17 00:00:00 2001 From: evoskuil Date: Wed, 11 Feb 2026 19:35:25 -0500 Subject: [PATCH 1/2] Comment typo. --- src/chasers/chaser_validate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chasers/chaser_validate.cpp b/src/chasers/chaser_validate.cpp index 31d2deeb..84a68b06 100644 --- a/src/chasers/chaser_validate.cpp +++ b/src/chasers/chaser_validate.cpp @@ -326,7 +326,7 @@ void chaser_validate::complete_block(const code& ec, const header_link& link, // VALID BLOCK // Under deferral there is no state change, but downloads will stall unless - // he window is closed out, so notify the check chaser of the increment. + // the window is closed out, so notify the check chaser of the increment. notify(ec, chase::valid, possible_wide_cast(height)); if (!defer_) From 07e806cb5bcf62167a6bc75d5a8002eca3b8550e Mon Sep 17 00:00:00 2001 From: evoskuil Date: Thu, 12 Feb 2026 18:47:20 -0500 Subject: [PATCH 2/2] Update block setter to provide height (db change). --- src/protocols/protocol_block_in_31800.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocols/protocol_block_in_31800.cpp b/src/protocols/protocol_block_in_31800.cpp index 2116ca6f..8e6f7008 100644 --- a/src/protocols/protocol_block_in_31800.cpp +++ b/src/protocols/protocol_block_in_31800.cpp @@ -326,7 +326,7 @@ bool protocol_block_in_31800::handle_receive_block(const code& ec, // Commit block.txs. // ........................................................................ - if (const auto code = query.set_code(*block, link, checked, bypass)) + if (const auto code = query.set_code(*block, link, checked, bypass, height)) { LOGF("Failure storing block [" << encode_hash(hash) << ":" << height << "] from [" << opposite() << "] " << code.message());