Skip to content

Commit 765bdf9

Browse files
committed
Minor change
1 parent db251fa commit 765bdf9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

crates/cdk/src/mint/mod.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ use cdk_common::common::{PaymentProcessorKey, QuoteTTL};
1010
#[cfg(feature = "auth")]
1111
use cdk_common::database::MintAuthDatabase;
1212
use cdk_common::database::{self, MintDatabase};
13-
use cdk_common::nuts::{
14-
self, BlindSignature, BlindedMessage, CurrencyUnit, Id, Kind, MintKeySet, Proof,
15-
};
13+
use cdk_common::nuts::{self, BlindSignature, BlindedMessage, CurrencyUnit, Id, Kind, MintKeySet};
1614
use cdk_common::secret;
1715
use cdk_signatory::signatory::{Signatory, SignatoryKeySet};
1816
use futures::StreamExt;
@@ -375,7 +373,7 @@ impl Mint {
375373

376374
/// Verify [`Proof`] meets conditions and is signed
377375
#[instrument(skip_all)]
378-
pub async fn verify_proofs(&self, proofs: &[Proof]) -> Result<(), Error> {
376+
pub async fn verify_proofs(&self, proofs: &Proofs) -> Result<(), Error> {
379377
proofs
380378
.iter()
381379
.map(|proof| {

0 commit comments

Comments
 (0)