()
| 126 | } |
| 127 | |
| 128 | async function getMaxVersionConfig(): Promise<MaxVersionConfig> { |
| 129 | try { |
| 130 | return await getDynamicConfig_BLOCKS_ON_INIT<MaxVersionConfig>( |
| 131 | 'tengu_max_version_config', |
| 132 | {}, |
| 133 | ) |
| 134 | } catch (error) { |
| 135 | logError(error as Error) |
| 136 | return {} |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Checks if a target version should be skipped due to user's minimumVersion setting. |
no test coverage detected