Fix generated projects' README + rename 'certify' -> 'publish'

This hints to how this particular purpose is about publishing
  certificate (either delegation or key de-registration).
This commit is contained in:
KtorZ
2023-01-18 16:48:40 +01:00
parent 20ac9c20a2
commit c440026e36
3 changed files with 6 additions and 6 deletions

View File

@@ -31,10 +31,10 @@ impl IdGenerator {
}
pub const SPEND: &str = "spend";
pub const CERT: &str = "cert";
pub const PUBLISH: &str = "publish";
pub const MINT: &str = "mint";
pub const WITHDRAW: &str = "withdraw";
pub const VALIDATOR_NAMES: [&str; 4] = [SPEND, CERT, MINT, WITHDRAW];
pub const VALIDATOR_NAMES: [&str; 4] = [SPEND, PUBLISH, MINT, WITHDRAW];
#[cfg(test)]
mod tests;