From deb95333f743f1fd3814169c201dd26c72f21098 Mon Sep 17 00:00:00 2001 From: Guillermo Duran Date: Thu, 21 Mar 2024 11:48:52 -0300 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20Challenge=202=20-=20Remove?= =?UTF-8?q?d=20comment.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- challenge/contracts/algorand-puzzle-2.algo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenge/contracts/algorand-puzzle-2.algo.ts b/challenge/contracts/algorand-puzzle-2.algo.ts index 2ac3b38..740692b 100644 --- a/challenge/contracts/algorand-puzzle-2.algo.ts +++ b/challenge/contracts/algorand-puzzle-2.algo.ts @@ -5,6 +5,6 @@ import { Contract } from '@algorandfoundation/tealscript'; // eslint-disable-next-line no-unused-vars class AlgorandPuzzle2 extends Contract { solveThePuzzle(): string { - // return 'You solved the puzzle!'; + return 'You solved the puzzle!'; } }