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.
1 parent f28ccff commit 0c00840Copy full SHA for 0c00840
packages/runner/src/storage/interface.ts
@@ -384,12 +384,7 @@ export type StorageTransactionStatus = Result<
384
export type IStorageTransactionState =
385
| { status: "ready"; journal: ITransactionJournal }
386
| { status: "pending"; journal: ITransactionJournal }
387
- | { status: "done"; journal: ITransactionJournal }
388
- | {
389
- status: "failed";
390
- journal: ITransactionJournal;
391
- reason: StorageTransactionFailed;
392
- };
+ | { status: "done"; journal: ITransactionJournal };
393
394
/**
395
* Representation of a storage transaction, which can be used to query facts and
0 commit comments