From d77b6caed4fe1c053b0561f3c1d970cfd7834b2e Mon Sep 17 00:00:00 2001 From: PhilReact Date: Mon, 16 Dec 2024 11:48:42 +0200 Subject: [PATCH] fixes --- src/background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background.ts b/src/background.ts index 845df71..c6fdb62 100644 --- a/src/background.ts +++ b/src/background.ts @@ -2220,7 +2220,7 @@ export async function createGroup({ const res = await processTransactionVersion2(signedBytes); if (!res?.signature) - throw new Error("Transaction was not able to be processed"); + throw new Error(res?.message || "Transaction was not able to be processed"); return res; } export async function inviteToGroup({ groupId, qortalAddress, inviteTime }) {