File tree 2 files changed +1
-2
lines changed
packages/ogmios/src/CardanoNode
OgmiosObservableCardanoNode
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ const DEFAULT_LSQ_RETRY_CONFIG: LocalStateQueryRetryConfig = {
54
54
initialInterval : 1000 ,
55
55
maxInterval : 30_000
56
56
} ;
57
- export type OgmiosObservableCardanoNodeProps = Omit < InteractionContextProps , 'interactionType' > & {
57
+ export type OgmiosObservableCardanoNodeProps = InteractionContextProps & {
58
58
/** Default: 2000ms */
59
59
healthCheckTimeout ?: Milliseconds ;
60
60
/** Default: {initialInterval: 1000, maxInterval: 30_000} */
Original file line number Diff line number Diff line change @@ -78,7 +78,6 @@ export const ogmiosToCoreError = (error: any) => {
78
78
export const withCoreCardanoNodeError = async < T > ( operation : ( ) => Promise < T > ) => {
79
79
try {
80
80
return await operation ( ) ;
81
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
82
81
} catch ( error ) {
83
82
throw ogmiosToCoreError ( error ) ;
84
83
}
You can’t perform that action at this time.
0 commit comments