File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,6 @@ impl<C: Cache> ChainNotifier<C> {
227227
228228 let mut new_tip = * old_header;
229229 for header in difference. disconnected_blocks . drain ( ..) {
230- println ! ( "Disconnecting block {}" , header. block_hash) ;
231230 if let Some ( cached_header) = self . header_cache . block_disconnected ( & header. block_hash ) {
232231 assert_eq ! ( cached_header, header) ;
233232 }
@@ -241,7 +240,6 @@ impl<C: Cache> ChainNotifier<C> {
241240 . or_else ( |e| Err ( ( e, Some ( new_tip) ) ) ) ?;
242241 debug_assert_eq ! ( block. block_hash, header. block_hash) ;
243242
244- println ! ( "Connecting block {}" , header. block_hash) ;
245243 self . header_cache . block_connected ( header. block_hash , header) ;
246244 chain_listener. block_connected ( & block, header. height ) ;
247245 new_tip = header;
You can’t perform that action at this time.
0 commit comments