From 1f9842f1d5cd686b03ce5c3528e08a2920f2bfef Mon Sep 17 00:00:00 2001 From: Nabarun Date: Tue, 25 Mar 2025 15:49:47 +0530 Subject: [PATCH] Debug account not found in snowball tx --- src/screens/WalletEmbed.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/screens/WalletEmbed.tsx b/src/screens/WalletEmbed.tsx index eb45e76..9691fad 100644 --- a/src/screens/WalletEmbed.tsx +++ b/src/screens/WalletEmbed.tsx @@ -88,6 +88,7 @@ export const WalletEmbed = () => { throw new Error('Requested network not supported.'); } + console.log({ network, fromAddress, chainId, toAddress, amount }); const account = await retrieveSingleAccount(network.namespace, network.chainId, fromAddress); if (!account) { throw new Error('Account not found for the requested address.');