From 814911f4145d8691dfa9865216227f7c81868c88 Mon Sep 17 00:00:00 2001
From: Garrett MacDonald <1791145+garrettian@users.noreply.github.com>
Date: Thu, 30 Jul 2020 21:23:25 +0800
Subject: [PATCH] =?UTF-8?q?Add=20"=E2=9C=85=20Successfully=20mined=20block?=
 =?UTF-8?q?"=20log=20message=20(#6764)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 substrate/client/consensus/pow/src/lib.rs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/substrate/client/consensus/pow/src/lib.rs b/substrate/client/consensus/pow/src/lib.rs
index 8c15528795c..42d1bc05019 100644
--- a/substrate/client/consensus/pow/src/lib.rs
+++ b/substrate/client/consensus/pow/src/lib.rs
@@ -648,6 +648,8 @@ fn mine_loop<B: BlockT, C, Algorithm, E, SO, S, CAW>(
 			}
 		};
 
+		log::info!("✅ Successfully mined block: {}", best_hash);
+		
 		let (hash, seal) = {
 			let seal = DigestItem::Seal(POW_ENGINE_ID, seal);
 			let mut header = header.clone();
-- 
GitLab