chain: add missing sources to SerializationError

This commit is contained in:
Henry de Valence 2020-12-01 13:35:21 -08:00
parent 5ccd1905fc
commit 1606b28d14
1 changed files with 2 additions and 2 deletions

View File

@ -7,14 +7,14 @@ use thiserror::Error;
#[derive(Error, Debug)] #[derive(Error, Debug)]
pub enum SerializationError { pub enum SerializationError {
/// An io error that prevented deserialization /// An io error that prevented deserialization
#[error("unable to deserialize type")] #[error("io error: {0}")]
Io(#[from] io::Error), Io(#[from] io::Error),
/// The data to be deserialized was malformed. /// The data to be deserialized was malformed.
// XXX refine errors // XXX refine errors
#[error("parse error: {0}")] #[error("parse error: {0}")]
Parse(&'static str), Parse(&'static str),
/// An error caused when validating a zatoshi `Amount` /// An error caused when validating a zatoshi `Amount`
#[error("input couldn't be parsed as a zatoshi `Amount`")] #[error("input couldn't be parsed as a zatoshi `Amount`: {source}")]
Amount { Amount {
/// The source error indicating how the num failed to validate /// The source error indicating how the num failed to validate
#[from] #[from]