* Create a checkpoint * @param name Name of the checkpoint * @returns Checkpoint hash
(name: string)
| 165 | * @returns Checkpoint hash |
| 166 | */ |
| 167 | async createCheckpoint(name: string): Promise<string> { |
| 168 | const hash = await createCheckpoint(name); |
| 169 | |
| 170 | await logInfo(`Created checkpoint: ${name}`, { |
| 171 | hash, |
| 172 | }); |
| 173 | |
| 174 | return hash; |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * Rollback changes |
no test coverage detected