Skip to content

Commit 0c00840

Browse files
committed
chore: revert uintended change
1 parent f28ccff commit 0c00840

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

packages/runner/src/storage/interface.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -384,12 +384,7 @@ export type StorageTransactionStatus = Result<
384384
export type IStorageTransactionState =
385385
| { status: "ready"; journal: ITransactionJournal }
386386
| { status: "pending"; journal: ITransactionJournal }
387-
| { status: "done"; journal: ITransactionJournal }
388-
| {
389-
status: "failed";
390-
journal: ITransactionJournal;
391-
reason: StorageTransactionFailed;
392-
};
387+
| { status: "done"; journal: ITransactionJournal };
393388

394389
/**
395390
* Representation of a storage transaction, which can be used to query facts and

0 commit comments

Comments
 (0)