From 3a7e0d5a09447d1d4b900463f9b78252a6bca9cf Mon Sep 17 00:00:00 2001 From: brewmaster012 <88689859+brewmaster012@users.noreply.github.com> Date: Mon, 26 Aug 2024 18:14:00 -0500 Subject: [PATCH] fix type --- tests/ops.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ops.ts b/tests/ops.ts index 0ce8199..68c25cf 100644 --- a/tests/ops.ts +++ b/tests/ops.ts @@ -47,14 +47,14 @@ const programId = new web3.PublicKey("ZETAjseVjuFsxdRxo6MmTCvqFwb3ZHUx56Co3vCmGi console.log("chain_id_bn:", chain_id_bn.toNumber()); // Uncomment the following to initialize the gateway program; - // can only be intialized once + // can only be initialized once // try { // const inst = await gatewayProgram.methods.initialize(tssAddressArray,chain_id_bn).transaction(); // console.log("initialize inst:", inst); // const tx = await anchor.web3.sendAndConfirmTransaction(conn, inst, [wallet]); // console.log("tx:", tx); // } catch (err) { - // console.log("intialize err:", err); + // console.log("initialize err:", err); // } const pdaAccountInfo = await conn.getAccountInfo(pdaAccount);