Get the vault manifest.
(&self)
| 432 | |
| 433 | /// Get the vault manifest. |
| 434 | pub fn vault_manifest(&self) -> Result<atomic_core::pristine::VaultManifest, RepositoryError> { |
| 435 | let txn = self |
| 436 | .pristine |
| 437 | .read_txn() |
| 438 | .map_err(|e| RepositoryError::Database(e.to_string()))?; |
| 439 | use atomic_core::pristine::VaultTxnT; |
| 440 | txn.get_vault_manifest() |
| 441 | .map_err(|e| RepositoryError::Database(e.to_string())) |
| 442 | } |
| 443 | |
| 444 | /// Get just the vault manifest's merkle hash for cheap state comparison. |
| 445 | /// |