From b5bf834f8295bd5ad4668972fcee0094a0faa678 Mon Sep 17 00:00:00 2001 From: rymnc <43716372+rymnc@users.noreply.github.com> Date: Sat, 6 Jul 2024 17:26:21 +0400 Subject: [PATCH] workshop: stage 1 --- sdk/src/bls12_381_on_g2_impl.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdk/src/bls12_381_on_g2_impl.rs b/sdk/src/bls12_381_on_g2_impl.rs index 56a528d..a51858e 100644 --- a/sdk/src/bls12_381_on_g2_impl.rs +++ b/sdk/src/bls12_381_on_g2_impl.rs @@ -3,3 +3,7 @@ use crate::stealth_addresses::StealthAddressOnCurve; use ark_bls12_381::G2Projective; struct Bls12_381_G2; + +impl StealthAddressOnCurve for Bls12_381_G2 { + type Projective = G2Projective; +}