From 818f818cff9d5f1d7705e32aaef52f39cad452e2 Mon Sep 17 00:00:00 2001 From: ankitsaxena21 Date: Mon, 14 Oct 2019 14:30:39 -0700 Subject: [PATCH] Update ballot.sol --- contracts/ballot.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contracts/ballot.sol b/contracts/ballot.sol index 73d3234bb4..d55734ed9a 100644 --- a/contracts/ballot.sol +++ b/contracts/ballot.sol @@ -13,8 +13,7 @@ contract Ballot { } // This is a type for a single proposal. - struct Proposal - { + struct Proposal { bytes32 name; // short name (up to 32 bytes) uint voteCount; // number of accumulated votes }