Skip to content

Commit

Permalink
Revert unintended change
Browse files Browse the repository at this point in the history
  • Loading branch information
fspreiss committed Jan 31, 2025
1 parent 91d73d0 commit e82aa0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rs/interfaces/src/crypto/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ impl ErrorReproducibility for CryptoError {
CryptoError::InconsistentAlgorithms { .. } => true,
// true, as the set of supported algorithms is stable (bound to code version)
CryptoError::AlgorithmNotSupported { .. } => true,
// true, as the result will not change upon retrying, unless the correct DKG transcript is loaded.
CryptoError::ThresholdSigDataNotFound { .. } => true,
// false, as the result may change if the DKG transcript is reloaded.
CryptoError::ThresholdSigDataNotFound { .. } => false,
CryptoError::RegistryClient(registry_client_error) => {
registry_client_error.is_reproducible()
}
Expand Down

0 comments on commit e82aa0f

Please sign in to comment.