-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: OperationRequiresNodeInCurrentEra -> OperationRequiresSyncedNode
This fix replaces the use of the last configured major version to determine readiness during initialisation with Ogmios server network sync information and specific guards on DB values.
- Loading branch information
Showing
7 changed files
with
54 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
packages/util/src/errors/OperationRequiresNodeInCurrentEra.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { CustomError } from 'ts-custom-error' | ||
|
||
export class OperationRequiresSyncedNode extends CustomError { | ||
public constructor (operation: string) { | ||
super() | ||
this.message = `Cannot ${operation} until cardano-node is close to the network tip` | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export * from './HostDoesNotExist' | ||
export * from './MissingConfig' | ||
export * from './ModuleIsNotInitialized' | ||
export * from './OperationRequiresNodeInCurrentEra' | ||
export * from './OperationRequiresSyncedNode' |