We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d2f38f commit cfbcf0fCopy full SHA for cfbcf0f
noir-projects/noir-contracts/contracts/protocol/auth_registry_contract/src/main.nr
@@ -236,6 +236,9 @@ pub contract AuthRegistry {
236
authorize: bool,
237
) -> return_data aztec::protocol::abis::private_circuit_public_inputs::PrivateCircuitPublicInputs {
238
// MACRO CODE START
239
+ // Note that the macros originally injected a phase check here as we enqueue a call to a public function. In
240
+ // this I have removed that check because the enqueued public function is in this contract and does not change
241
+ // phase.
242
assert_compatible_oracle_version();
243
244
let mut serialized_params: [Field; 3] = [0; 3];
0 commit comments