You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/backend_task/error.rs
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -842,6 +842,16 @@ pub enum TaskError {
842
842
)]
843
843
NoVotingIdentity{identity_id:String},
844
844
845
+
/// No open vote poll was found on Platform for the given DPNS name.
846
+
///
847
+
/// Surfaced by the pre-flight existence check in `vote_on_dpns_name`,
848
+
/// before any state transition is broadcast. Short-circuits a ~70 s
849
+
/// retry chain that would otherwise expire with an opaque timeout.
850
+
#[error(
851
+
"The contested name \"{name}\" is not currently open for voting. It may have been resolved or may not exist. Refresh the contested names list and try again."
852
+
)]
853
+
VotePollNotFound{name:String},
854
+
845
855
/// The identity does not have an authentication key required to sign documents.
846
856
#[error(
847
857
"This identity does not have a key for signing documents. Please add an authentication key."
0 commit comments