From 96ead0b19e3f9230b8ae73fc58efeccc7b915564 Mon Sep 17 00:00:00 2001 From: aniampio Date: Mon, 12 Aug 2024 21:51:16 +0100 Subject: [PATCH] Fix function input --- common/nym_offline_compact_ecash/src/scheme/withdrawal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/nym_offline_compact_ecash/src/scheme/withdrawal.rs b/common/nym_offline_compact_ecash/src/scheme/withdrawal.rs index 8cc6f0e95e..18666a35d6 100644 --- a/common/nym_offline_compact_ecash/src/scheme/withdrawal.rs +++ b/common/nym_offline_compact_ecash/src/scheme/withdrawal.rs @@ -190,7 +190,7 @@ pub fn withdrawal_request( // Generate a non-identity commitment hash let (joined_commitment, joined_commitment_hash, joined_commitment_opening) = - generate_non_identity_h(¶ms, sk_user, v, expiration_date, t_type); + generate_non_identity_h(params, sk_user, v, expiration_date, t_type); // Compute Pedersen commitments for private attributes (wallet secret and user's secret) let private_attributes = vec![sk_user.sk, v];