From 9bc2ae5b0d9ad7cf4f29c80d1a14dd44974ee808 Mon Sep 17 00:00:00 2001 From: stringhandler Date: Wed, 17 Jun 2026 09:01:57 +0200 Subject: [PATCH] fix: fix injl typo in core constructible --- src/merkle/cmr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/merkle/cmr.rs b/src/merkle/cmr.rs index d1f8684e..525d1758 100644 --- a/src/merkle/cmr.rs +++ b/src/merkle/cmr.rs @@ -280,7 +280,7 @@ impl<'brand> CoreConstructible<'brand> for ConstructibleCmr<'brand> { fn injr(child: &Self) -> Self { ConstructibleCmr { - cmr: Cmr::injl(child.cmr), + cmr: Cmr::injr(child.cmr), inference_context: child.inference_context.shallow_clone(), } }