We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d591ee commit 4b6ecf4Copy full SHA for 4b6ecf4
packages/rs-sdk/src/core/error.rs
@@ -16,12 +16,12 @@ pub enum DashCoreError {
16
/// Error from Dash Core.
17
#[error("Dash Core RPC error: {0}")]
18
Rpc(#[from] dashcore_rpc::Error),
19
- /// Invalid format of the hash.
20
- #[error("Invalid data format: {0}")]
+ /// Quorum is invalid.
+ #[error("Invalid quorum: {0}")]
21
InvalidQuorum(String),
22
23
- /// Fork not activated yet
24
- #[error("Fork not activated yet: {0}")]
+ /// Fork activation error - most likely the fork is not activated yet.
+ #[error("Fork activation: {0}")]
25
ActivationForkError(String),
26
}
27
0 commit comments