File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
stackslib/src/chainstate/nakamoto Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -2701,12 +2701,10 @@ impl NakamotoChainState {
2701
2701
index_block_hash : & StacksBlockId ,
2702
2702
) -> Result < Option < StacksHeaderInfo > , ChainstateError > {
2703
2703
let sql = "SELECT * FROM block_headers WHERE index_block_hash = ?1" ;
2704
- println ! ( "get_block_header_epoch2(): Looking for block {index_block_hash}" ) ;
2705
2704
let result = query_row_panic ( chainstate_conn, sql, & [ & index_block_hash] , || {
2706
2705
"FATAL: multiple rows for the same block hash" . to_string ( )
2707
2706
} ) ?;
2708
2707
2709
- println ! ( "get_block_header_epoch2(): Found {result:?}" ) ;
2710
2708
Ok ( result)
2711
2709
}
2712
2710
@@ -2715,7 +2713,6 @@ impl NakamotoChainState {
2715
2713
chainstate_conn : & Connection ,
2716
2714
index_block_hash : & StacksBlockId ,
2717
2715
) -> Result < Option < StacksHeaderInfo > , ChainstateError > {
2718
- println ! ( "get_block_header(): Looking for block {index_block_hash}" ) ;
2719
2716
if let Some ( header) = Self :: get_block_header_nakamoto ( chainstate_conn, index_block_hash) ? {
2720
2717
return Ok ( Some ( header) ) ;
2721
2718
}
You can’t perform that action at this time.
0 commit comments