Răsfoiți Sursa

fix: mint mem delete proof state

thesimplekid 1 lună în urmă
părinte
comite
55c095c2ef
1 a modificat fișierele cu 8 adăugiri și 0 ștergeri
  1. 8 0
      crates/cdk/src/cdk_database/mint_memory.rs

+ 8 - 0
crates/cdk/src/cdk_database/mint_memory.rs

@@ -297,6 +297,14 @@ impl MintDatabase for MintMemoryDatabase {
             });
         }
 
+        {
+            let mut db_proofs_state = self.proof_state.lock().await;
+
+            ys.iter().for_each(|y| {
+                db_proofs_state.remove(&y.to_bytes());
+            });
+        }
+
         if let Some(quote_id) = quote_id {
             let mut quote_proofs = self.quote_proofs.lock().await;
             quote_proofs.remove(&quote_id);