From 3b66777eec98637d64d74a2f126a074fa3db63b7 Mon Sep 17 00:00:00 2001 From: YaoGalteland Date: Thu, 7 Mar 2024 21:07:40 +0100 Subject: [PATCH] update mux --- book/src/design/gadgets/multiplexer.md | 1 + 1 file changed, 1 insertion(+) diff --git a/book/src/design/gadgets/multiplexer.md b/book/src/design/gadgets/multiplexer.md index ea80244ec6..6b531d2ace 100644 --- a/book/src/design/gadgets/multiplexer.md +++ b/book/src/design/gadgets/multiplexer.md @@ -2,6 +2,7 @@ Given a boolean flag $\textsf{choice}$, this gadget is used for selecting one of two values ($\textsf{left}$ and $\textsf{right}$) based on the boolean flag. If $\textsf{choice}$ is true, it returns $\textsf{right}$; otherwise, it returns $\textsf{left}$. This functionality is crucial for circuits that require conditional logic. +We use a multiplexer to compute differently for ZEC or for non-ZEC assets in Orchard protocol. ## Chip instructions