Fix ordering of Sapling build errors.

This commit is contained in:
Kris Nuttycombe 2021-06-02 17:15:29 -06:00
parent 0743f9e815
commit e32e2d6e7f
1 changed files with 3 additions and 3 deletions

View File

@ -33,11 +33,11 @@ const MIN_SHIELDED_OUTPUTS: usize = 2;
#[derive(Debug, PartialEq)]
pub enum Error {
InvalidAmount,
InvalidAddress,
AnchorMismatch,
SpendProof,
BindingSig,
InvalidAddress,
InvalidAmount,
SpendProof,
}
impl fmt::Display for Error {