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:
parent
3d2fb1c13e
commit
b18c32f30f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue