From eb0187a0f5a1034358fd70f128e0367b5f25c4e3 Mon Sep 17 00:00:00 2001 From: Paul Ogwulumba <68940073+paulOgwulumba@users.noreply.github.com> Date: Sun, 17 Mar 2024 12:09:31 +0100 Subject: [PATCH] Update algorand-puzzle-2.algo.ts --- 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!'; } }