Bläddra i källkod

fix: use correct error

thesimplekid 1 månad sedan
förälder
incheckning
0efa50ffad

+ 3 - 3
crates/cdk-integration-tests/tests/fake_wallet.rs

@@ -866,9 +866,9 @@ async fn test_fake_mint_input_output_mismatch() -> Result<()> {
 
     match response {
         Err(err) => match err {
-            cdk::Error::UnsupportedUnit => (),
-            _ => {
-                bail!("Wrong error returned");
+            cdk::Error::UnitMismatch => (),
+            err => {
+                bail!("Wrong error returned: {}", err);
             }
         },
         Ok(_) => {

+ 1 - 1
crates/cdk/src/mint/verification.rs

@@ -192,7 +192,7 @@ impl Mint {
                 output_verification.unit,
                 input_verification.unit
             );
-            return Err(Error::MultipleUnits);
+            return Err(Error::UnitMismatch);
         }
 
         let fees = self.get_proofs_fee(inputs).await?;