Add the database format to the panic metadata (#2249)

Seems like it might be useful as we add more stuff to the state.
This commit is contained in:
teor 2021-06-04 14:42:15 +10:00 committed by GitHub
parent 3d2fb1c13e
commit b18c32f30f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,7 @@ use application::fatal_error;
use std::process;
use zebra_network::constants::PORT_IN_USE_ERROR;
use zebra_state::constants::LOCK_FILE_ERROR;
use zebra_state::constants::{DATABASE_FORMAT_VERSION, LOCK_FILE_ERROR};
/// Application state
pub static APPLICATION: AppCell<ZebradApp> = AppCell::new();
@ -222,6 +222,8 @@ impl Application for ZebradApp {
("version", app_version().to_string()),
// config
("Zcash network", config.network.network.to_string()),
// constants
("state version", DATABASE_FORMAT_VERSION.to_string()),
];
// git env vars can be skipped if there is no `.git` during the