We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cddbfdb + 114e4ce commit 4619793Copy full SHA for 4619793
.changeset/fine-webs-divide.md
@@ -0,0 +1,5 @@
1
+---
2
+"jazz-tools": patch
3
4
+
5
+Show invalid transaction in inspector even if they are not decryptable
packages/jazz-tools/src/inspector/viewer/history-view.tsx
@@ -115,7 +115,9 @@ function getTransactionChanges(
115
if (tx.isValid === false && tx.tx.privacy === "private") {
116
const readKey = coValue.core.getReadKey(tx.tx.keyUsed);
117
if (!readKey) {
118
- throw new Error("Read key not found");
+ return [
119
+ `Unable to decrypt transaction: read key ${tx.tx.keyUsed} not found.`,
120
+ ];
121
}
122
123
return (
0 commit comments