diff --git a/DecisionSystem/CentralisedDecision/ballotvoter.py b/DecisionSystem/CentralisedDecision/ballotvoter.py index 48552ed..b5b2e47 100644 --- a/DecisionSystem/CentralisedDecision/ballotvoter.py +++ b/DecisionSystem/CentralisedDecision/ballotvoter.py @@ -51,11 +51,11 @@ class BallotVoter: def submit_vote(self): v = self.on_vote() if v == None: - print('Could not vote on the frame') + print('Could not get vote') return print("Got Vote") vote = SubmitVote(v, self.messenger.id) - print('created vote') + print('Created Vote Message') self.messenger.broadcast_message(self.messenger.swarm, vote.serialise()) print('published vote')