From c64d4980b496321adcf0a89d35daee087ec2b057 Mon Sep 17 00:00:00 2001
From: Gav <gavin@parity.io>
Date: Wed, 14 Mar 2018 11:58:03 +0100
Subject: [PATCH] Remove stray printlns.

---
 substrate/demo/runtime/src/runtime/council.rs | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/substrate/demo/runtime/src/runtime/council.rs b/substrate/demo/runtime/src/runtime/council.rs
index ce922f89717..fc93748ac1b 100644
--- a/substrate/demo/runtime/src/runtime/council.rs
+++ b/substrate/demo/runtime/src/runtime/council.rs
@@ -491,8 +491,6 @@ fn finalise_tally() {
 	let leaderboard: Vec<(Balance, AccountId)> = storage::take(LEADERBOARD).unwrap_or_default();
 	let new_expiry = system::block_number() + term_duration();
 
-	println!("Finalising tally {} {}, {:?}", system::block_number(), coming, leaderboard);
-
 	// return bond to winners.
 	let candidacy_bond = candidacy_bond();
 	for &(_, ref w) in leaderboard.iter()
@@ -500,9 +498,7 @@ fn finalise_tally() {
 		.take_while(|&&(b, _)| b != 0)
 		.take(coming as usize)
 	{
-		println!("Refunding by {:?}, {:?}", candidacy_bond, staking::balance(w));
 		staking::internal::refund(w, candidacy_bond);
-		println!("Refunded to {:?}", staking::balance(w));
 	}
 
 	// set the new council.
-- 
GitLab