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> {
227
227
228
228
let mut new_tip = * old_header;
229
229
for header in difference. disconnected_blocks . drain ( ..) {
230
- println ! ( "Disconnecting block {}" , header. block_hash) ;
231
230
if let Some ( cached_header) = self . header_cache . block_disconnected ( & header. block_hash ) {
232
231
assert_eq ! ( cached_header, header) ;
233
232
}
@@ -241,7 +240,6 @@ impl<C: Cache> ChainNotifier<C> {
241
240
. or_else ( |e| Err ( ( e, Some ( new_tip) ) ) ) ?;
242
241
debug_assert_eq ! ( block. block_hash, header. block_hash) ;
243
242
244
- println ! ( "Connecting block {}" , header. block_hash) ;
245
243
self . header_cache . block_connected ( header. block_hash , header) ;
246
244
chain_listener. block_connected ( & block, header. height ) ;
247
245
new_tip = header;
You can’t perform that action at this time.
0 commit comments