From f67eaeb7ad23ddd95e2f6dbb6acfaa6d35eeeab1 Mon Sep 17 00:00:00 2001 From: Ludo Galabru Date: Tue, 27 Jul 2021 17:57:55 -0400 Subject: [PATCH 1/2] Update src/burnchains/burnchain.rs --- src/burnchains/burnchain.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/burnchains/burnchain.rs b/src/burnchains/burnchain.rs index d1cc4c574..7bac33421 100644 --- a/src/burnchains/burnchain.rs +++ b/src/burnchains/burnchain.rs @@ -1213,7 +1213,7 @@ impl Burnchain { ); if let Some(target_block_height) = target_block_height_opt { - // target_block_height is used as a hint, but could also be completely off + // `target_block_height` is used as a hint, but could also be completely off // in certain situations. The current function is directly reading the // headers and syncing with the bitcoin-node, and the interval of blocks // to download computed here should be considered as our source of truth. From 7ceec25c063c51950ecc7879324f0fa74dbe4f35 Mon Sep 17 00:00:00 2001 From: Ludo Galabru Date: Tue, 27 Jul 2021 17:59:58 -0400 Subject: [PATCH 2/2] Update src/burnchains/burnchain.rs --- src/burnchains/burnchain.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/burnchains/burnchain.rs b/src/burnchains/burnchain.rs index 7bac33421..8544a890d 100644 --- a/src/burnchains/burnchain.rs +++ b/src/burnchains/burnchain.rs @@ -1214,7 +1214,7 @@ impl Burnchain { if let Some(target_block_height) = target_block_height_opt { // `target_block_height` is used as a hint, but could also be completely off - // in certain situations. The current function is directly reading the + // in certain situations. This function is directly reading the // headers and syncing with the bitcoin-node, and the interval of blocks // to download computed here should be considered as our source of truth. if target_block_height > start_block && target_block_height < end_block {