From ce539b167c2b0c0ce2f810aef8cecdfe5f3e356b Mon Sep 17 00:00:00 2001 From: Jeff Bencin Date: Fri, 20 Dec 2024 16:02:16 -0500 Subject: [PATCH] fix: Address PR feedback Co-authored-by: Brice --- stackslib/src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stackslib/src/cli.rs b/stackslib/src/cli.rs index 49560ed7d2..66e14d4b5d 100644 --- a/stackslib/src/cli.rs +++ b/stackslib/src/cli.rs @@ -440,7 +440,7 @@ pub fn command_try_mine(argv: &[String], conf: Option<&Config>) { ) .unwrap_or_else(|e| panic!("Failed to open mempool db: {e}")); - // Parent Staccks header for block we are going to mine + // Parent Stacks header for block we are going to mine let parent_stacks_header = NakamotoChainState::get_canonical_block_header(chainstate.db(), &sort_db) .unwrap_or_else(|e| panic!("Error looking up chain tip: {e}"))