@@ -601,7 +601,7 @@ impl<G: Group, H: BlockSizeUser + Digest + FixedOutputReset> VerifiableServer<G,
601601
602602 Ok ( VerifiableServerBatchEvaluatePrepareResult {
603603 prepared_evaluation_elements : evaluation_elements,
604- t : PreparedT {
604+ t : PreparedTscalar {
605605 t,
606606 hash : PhantomData ,
607607 } ,
@@ -614,7 +614,7 @@ impl<G: Group, H: BlockSizeUser + Digest + FixedOutputReset> VerifiableServer<G,
614614 rng : & mut R ,
615615 blinded_elements : IB ,
616616 evaluation_elements : & ' b IE ,
617- PreparedT { t, .. } : & PreparedT < G , H > ,
617+ PreparedTscalar { t, .. } : & PreparedTscalar < G , H > ,
618618 ) -> Result < VerifiableServerBatchEvaluateFinishResult < ' b , G , H , IE > >
619619 where
620620 G : ' a + ' b ,
@@ -706,7 +706,7 @@ pub struct PreparedEvaluationElement<G: Group, H: BlockSizeUser + Digest + Fixed
706706/// Contains the prepared `t` by a verifiable server batch evaluate preparation.
707707#[ derive( DeriveWhere ) ]
708708#[ derive_where( Zeroize ( drop) ) ]
709- pub struct PreparedT < G : Group , H : BlockSizeUser + Digest + FixedOutputReset > {
709+ pub struct PreparedTscalar < G : Group , H : BlockSizeUser + Digest + FixedOutputReset > {
710710 t : G :: Scalar ,
711711 #[ derive_where( skip) ]
712712 hash : PhantomData < H > ,
@@ -727,7 +727,7 @@ pub struct VerifiableServerBatchEvaluatePrepareResult<
727727 fn ( ( & BlindedElement < G , H > , G :: Scalar ) ) -> PreparedEvaluationElement < G , H > ,
728728 > ,
729729 /// Prepared `t` needed to finish the verifiable server batch evaluation.
730- pub t : PreparedT < G , H > ,
730+ pub t : PreparedTscalar < G , H > ,
731731}
732732
733733/// Contains the fields that are returned by a verifiable server batch evaluate
0 commit comments