From 4e6200796e306c6a4914a2c58966dac66d78e946 Mon Sep 17 00:00:00 2001 From: therealyingtong Date: Tue, 19 Apr 2022 12:58:07 +0200 Subject: [PATCH] Implement new FixedPoint trait for OrchardFixedBasesFull. --- src/constants/fixed_bases.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/constants/fixed_bases.rs b/src/constants/fixed_bases.rs index d6c7c770..af11e335 100644 --- a/src/constants/fixed_bases.rs +++ b/src/constants/fixed_bases.rs @@ -98,7 +98,7 @@ impl FixedPoints for OrchardFixedBases { } impl FixedPoint for OrchardFixedBasesFull { - type ScalarKind = FullScalar; + type FixedScalarKind = FullScalar; fn generator(&self) -> pallas::Affine { match self { @@ -129,7 +129,7 @@ impl FixedPoint for OrchardFixedBasesFull { } impl FixedPoint for NullifierK { - type ScalarKind = BaseFieldElem; + type FixedScalarKind = BaseFieldElem; fn generator(&self) -> pallas::Affine { nullifier_k::generator() @@ -145,7 +145,7 @@ impl FixedPoint for NullifierK { } impl FixedPoint for ValueCommitV { - type ScalarKind = ShortScalar; + type FixedScalarKind = ShortScalar; fn generator(&self) -> pallas::Affine { value_commit_v::generator()