From db81d5427e47e3b1bfd0a617ae6320a8f743d8cf Mon Sep 17 00:00:00 2001 From: deveshchatuphale7 Date: Mon, 25 Mar 2024 23:51:31 +0530 Subject: [PATCH] uncommented line to run test script --- challenge/contracts/algorand-puzzle-2.algo.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/challenge/contracts/algorand-puzzle-2.algo.ts b/challenge/contracts/algorand-puzzle-2.algo.ts index 2ac3b38..1dee1e0 100644 --- a/challenge/contracts/algorand-puzzle-2.algo.ts +++ b/challenge/contracts/algorand-puzzle-2.algo.ts @@ -1,10 +1,8 @@ import { Contract } from '@algorandfoundation/tealscript'; -// TODO: Uncomment Line 8 before solving the puzzle. - // eslint-disable-next-line no-unused-vars class AlgorandPuzzle2 extends Contract { solveThePuzzle(): string { - // return 'You solved the puzzle!'; + return 'You solved the puzzle!'; } }