mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-08-01 12:51:30 +00:00
Carry the interpreted value of the encoding through the error.
This commit is contained in:
@@ -408,7 +408,7 @@ impl PrimeField for Fq {
|
||||
|
||||
Ok(r)
|
||||
} else {
|
||||
Err(PrimeFieldDecodingError::NotInField)
|
||||
Err(PrimeFieldDecodingError::NotInField(format!("{:?}", r.0)))
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -229,7 +229,7 @@ impl PrimeField for Fr {
|
||||
|
||||
Ok(r)
|
||||
} else {
|
||||
Err(PrimeFieldDecodingError::NotInField)
|
||||
Err(PrimeFieldDecodingError::NotInField(format!("{:?}", r.0)))
|
||||
}
|
||||
}
|
||||
|
||||
|
10
src/lib.rs
10
src/lib.rs
@@ -365,20 +365,24 @@ pub trait PrimeFieldRepr: Sized +
|
||||
#[derive(Debug)]
|
||||
pub enum PrimeFieldDecodingError {
|
||||
// The encoded value is not in the field
|
||||
NotInField
|
||||
NotInField(String)
|
||||
}
|
||||
|
||||
impl Error for PrimeFieldDecodingError {
|
||||
fn description(&self) -> &str {
|
||||
match self {
|
||||
&PrimeFieldDecodingError::NotInField => "not an element in the field"
|
||||
&PrimeFieldDecodingError::NotInField(..) => "not an element of the field"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl fmt::Display for PrimeFieldDecodingError {
|
||||
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
||||
write!(f, "{}", self.description())
|
||||
match self {
|
||||
&PrimeFieldDecodingError::NotInField(ref repr) => {
|
||||
write!(f, "{} is not an element of the field", repr)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user