From d01dd71b7e1963de6af537160ff78961c6b616d1 Mon Sep 17 00:00:00 2001 From: Yoojin Ko Date: Wed, 13 Sep 2023 17:19:26 +0900 Subject: [PATCH] fix: send transaction to wrapped method --- src/modules/wallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/wallet.ts b/src/modules/wallet.ts index e585072..16dc8d4 100644 --- a/src/modules/wallet.ts +++ b/src/modules/wallet.ts @@ -62,6 +62,6 @@ export default class Wallet extends ModuleBase{ throw new Error ("You need to add account"); } txBody.address = signerAddress; - return await this.ain.sendTransaction(txBody); + return await this.sendTransaction(txBody); } }