diff --git a/substrate/wasm-runtime/polkadot/src/runtime/governance.rs b/substrate/wasm-runtime/polkadot/src/runtime/governance.rs
index 783522ffdf870adda7ab14e8dc63e288d889b8ae..f6c41ff805c89a81421ef69fed55b0f536fb0df6 100644
--- a/substrate/wasm-runtime/polkadot/src/runtime/governance.rs
+++ b/substrate/wasm-runtime/polkadot/src/runtime/governance.rs
@@ -67,8 +67,7 @@ pub fn approvals_required() -> u32 {
 
 /// Current era is ending; we should finish up any proposals.
 pub fn end_of_an_era() {
-	// TODO: tally up votes for the current proposal, if any. enact if there are sufficient
-	// approvals.
+	// tally up votes for the current proposal, if any. enact if there are sufficient approvals.
 	if let Some(proposal) = Proposal::lookup(b"gov:pro") {
 		let enact = approval_count() >= approvals_required();