From 6c4bc689210a9d4fa9a03fbeb5ebba2e1fce79c2 Mon Sep 17 00:00:00 2001 From: Daniel Karzel Date: Thu, 7 Oct 2021 13:34:55 +1100 Subject: [PATCH] Fix error text --- daemon/src/model/cfd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/src/model/cfd.rs b/daemon/src/model/cfd.rs index cd8dca6..a1ca9c9 100644 --- a/daemon/src/model/cfd.rs +++ b/daemon/src/model/cfd.rs @@ -901,7 +901,7 @@ impl Cfd { } #[derive(thiserror::Error, Debug, Clone, Copy)] -#[error("The cfd is not committed yet")] +#[error("The cfd is not ready for CET publication yet")] pub struct NotReadyYet; #[derive(Debug, Clone)]