From 3dd62f9c3a7188f4d694247e996712980ad85ead Mon Sep 17 00:00:00 2001 From: Fabco Date: Tue, 30 Jul 2024 15:22:05 +0200 Subject: [PATCH] fix typo --- wrappers/Bank.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/Bank.ts b/wrappers/Bank.ts index c37e93e..80319bd 100644 --- a/wrappers/Bank.ts +++ b/wrappers/Bank.ts @@ -26,7 +26,7 @@ export class Bank implements Contract { return new Bank(address); } - static createFromConfig(Cell, workchain = 0) { + static createFromConfig(code: Cell, workchain = 0) { const data = bankConfigToCell(); const init = { code, data }; return new Bank(contractAddress(workchain, init), init);