From 6332910a195813930261405ab2adf2e31f06b6a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20=C4=86wirko?= Date: Sun, 28 Apr 2024 15:57:30 +0200 Subject: [PATCH] remove console.log --- example/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/index.html b/example/index.html index 8a8baf1..bf0f3f6 100644 --- a/example/index.html +++ b/example/index.html @@ -202,7 +202,7 @@

Other demos:

// Transaction callbacks onTxStart: (tx) => { uiPending(true); }, onTxSent: (tx) => { const hash = tx.getHash().toString(); hash && updateTxHashContainer(hash, true); }, - onTxFinalized: (tx) => { console.log(tx); tx?.hash && updateTxHashContainer(tx.hash); uiPending(false); }, + onTxFinalized: (tx) => { tx?.hash && updateTxHashContainer(tx.hash); uiPending(false); }, onTxFailure: (tx, error) => { displayError(error); uiPending(false); }, // Qr code callbacks: onQrPending: () => { uiPending(true); },