diff --git a/agt/ballotagent/new_ballot.go b/agt/ballotagent/new_ballot.go
index c28f4382977ecc8091fe00f48b5f560681a4ce54..e0121b2a7c47f00407789e8298af578fa39b32b5 100644
--- a/agt/ballotagent/new_ballot.go
+++ b/agt/ballotagent/new_ballot.go
@@ -129,7 +129,6 @@ func (rsa *BallotServerAgent) handleBallot(
 		isOpen:   false,
 		results:  rad.ResultResponse{Winner: int(winner), Ranking: intRanking},
 	}
-	fmt.Println(targetBallot)
 }
 
 func (rsa *BallotServerAgent) handleBallotWithSingleOption(
@@ -171,6 +170,13 @@ func (rsa *BallotServerAgent) handleBallotWithSingleOption(
 	for _, alt := range ranking {
 		intRanking = append(intRanking, int(alt))
 	}
-	targetBallot.results = rad.ResultResponse{Winner: int(winner), Ranking: intRanking}
-	fmt.Println(targetBallot)
+
+	rsa.ballots[ballot] = BallotInfo{
+		profile:  profile,
+		options:  targetBallot.options,
+		votersId: targetBallot.votersId,
+		nbAlts:   targetBallot.nbAlts,
+		isOpen:   false,
+		results:  rad.ResultResponse{Winner: int(winner), Ranking: intRanking},
+	}
 }