From 04533f563535cc277603498a3e562ac870d75195 Mon Sep 17 00:00:00 2001 From: Joey Yandle Date: Wed, 14 Aug 2019 10:45:46 -0700 Subject: [PATCH] Fix bad copypasta, remove template parameters Co-Authored-By: Henry de Valence --- src/range_proof/party.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/range_proof/party.rs b/src/range_proof/party.rs index ef84ab25..aaf2c8fe 100644 --- a/src/range_proof/party.rs +++ b/src/range_proof/party.rs @@ -169,7 +169,7 @@ impl<'a> PartyAwaitingBitChallenge<'a> { /// Receive a [`BitChallenge`] from the dealer and use it to /// compute commitments to the party's polynomial coefficients. #[cfg(feature = "std")] - pub fn apply_challenge( + pub fn apply_challenge( self, vc: &BitChallenge, ) -> (PartyAwaitingPolyChallenge, PolyCommitment) {