From ed6690fefafd964d3d4ef8756c97a8a3271772fd Mon Sep 17 00:00:00 2001 From: kogeler Date: Mon, 7 Oct 2024 11:47:41 +0300 Subject: [PATCH] fix logs --- src/utils/transaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/transaction.ts b/src/utils/transaction.ts index b63d947..1a2558e 100644 --- a/src/utils/transaction.ts +++ b/src/utils/transaction.ts @@ -1,7 +1,7 @@ export async function sendTransaction(transaction: any, sender: any, api: any): Promise { await new Promise(async (unsub) => { transaction.signAndSend(sender, ({ status, events }) => { - console.log(`Current status is $.status}`); + console.log(`Current status is ${status}`); if (status.isInBlock) { console.log(`Transaction included at blockHash ${status.asInBlock}`);