Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rccsousa committed Oct 30, 2024
1 parent 04cee86 commit a89e0f9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Wordle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ contract Wordle {
emit CorrectGuess(guess, "Well done!");
return true; // Correct guess
} else {
console.log(7 - ATTEMPTS, "Attempts left.");
emit RemainingAttempts(7 - ATTEMPTS, "Attempts left."); // Clear message
return false; // Incorrect guess
}
Expand Down

0 comments on commit a89e0f9

Please sign in to comment.