Add wrapped signer and signer log; fix adapter unsubscribing in app storage; add more details to thunk signing error, handle signing errors in auth

This commit is contained in:
Jon Staab
2025-07-29 11:11:40 -07:00
parent dc9a873d92
commit bd67f2763d
5 changed files with 101 additions and 15 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ export class Thunk {
try {
event = await signer.sign(event)
} catch (e: any) {
return this._fail(String(e.error || e))
return this._fail(`Failed to sign event: ${String(e.error || e)}`)
}
}