Add emojis (#5420)

This commit is contained in:
Gavin Wood
2020-03-27 10:41:31 +01:00
committed by GitHub
parent 15df85a000
commit acab5f0570
19 changed files with 42 additions and 42 deletions
+2 -2
View File
@@ -125,7 +125,7 @@ impl<
return std::task::Poll::Ready(Err(From::from(err)));
},
};
info!("Importing {} blocks", c);
info!("📦 Importing {} blocks", c);
count = Some(c);
c
}
@@ -185,7 +185,7 @@ impl<
}
if link.imported_blocks >= count {
info!("Imported {} blocks. Best: #{}", read_block_count, client.chain_info().best_number);
info!("🎉 Imported {} blocks. Best: #{}", read_block_count, client.chain_info().best_number);
return std::task::Poll::Ready(Ok(()));
} else {