Replies: 1 comment 3 replies
-
Compilation happens at a stage before the witness (and therefore values of the |
Beta Was this translation helpful? Give feedback.
-
Compilation happens at a stage before the witness (and therefore values of the |
Beta Was this translation helpful? Give feedback.
-
I have a msg that size can be up to 32*4 bytes, but if a msg not 32 * 4 bytes, I need to know the actual size. So I assign the msgs[0] as the length and msgs[1:] as the msg content.
But the
var size = msgs[0].(int)
will throw an errorparse circuit: interface conversion: frontend.Variable is expr.LinearExpression, not int
at the circuit compile stageSo my question is:
Beta Was this translation helpful? Give feedback.
All reactions