From 1c903cab0f3b7d818a97f1edfa4ab8da3bb534ee Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Mon, 15 Mar 2021 02:21:41 -0400 Subject: [PATCH] Orchard: fix into() call inside extract_x --- zebra-chain/src/orchard/commitment.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra-chain/src/orchard/commitment.rs b/zebra-chain/src/orchard/commitment.rs index fc3740892..367340cef 100644 --- a/zebra-chain/src/orchard/commitment.rs +++ b/zebra-chain/src/orchard/commitment.rs @@ -143,7 +143,7 @@ impl NoteCommitment { /// /// https://zips.z.cash/protocol/protocol.pdf#concreteextractorpallas pub fn extract_x(&self) -> pallas::Base { - match self.0.get_xy().into { + match self.0.get_xy().into() { // If Some, it's not the identity. Some((x, _)) => x, _ => pallas::Base::zero(),