From ba7cc42aa8501b3fc1d180909fb3b59a329ae39c Mon Sep 17 00:00:00 2001 From: Tal Kol Date: Sat, 30 Apr 2022 03:16:37 +0100 Subject: [PATCH] Minor typo --- contracts/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/main.ts b/contracts/main.ts index b4148d5..148ea6f 100644 --- a/contracts/main.ts +++ b/contracts/main.ts @@ -8,7 +8,7 @@ export function createCode() { return Cell.fromBoc(fs.readFileSync(__dirname + "/../build/main.cell"))[0]; } -// returns contract storage cell according to save_data() contract method +// returns contract data cell (storage) according to save_data() contract method export function createData(params: { ownerAddress: Address; counter: number }) { return beginCell().storeAddress(params.ownerAddress).storeUint(params.counter, 64).endCell(); }