Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(public): stack trace short term hack (#9024)
Fixes the public stack trace, to unblock releases. BEFORE ``` Simulation error: Assertion failed: Not implemented 'false' 248 | on_behalf_of: AztecAddress 249 | ) { > 250 | assert(false, "Not implemented"); | ^ 251 | let inner_hash = compute_inner_authwit_hash( 252 | [(*context).msg_sender().to_field(), (*context).selector().to_field(), (*context).get_args_hash()] 253 | ); at false (../../../noir-projects/aztec-nr/authwit/src/auth.nr:250:12) at assert_current_call_valid_authwit_public(&mut context, from) (../../../noir-projects/noir-contracts/contracts/token_contract/src/main.nr:243:13) at aztec (../../../noir-projects/noir-contracts/contracts/token_contract/src/main.nr:14:3) at Token.public_dispatch at Uniswap.public_dispatch ``` AFTER ``` Simulation error: Assertion failed: Not implemented 'false' 248 | on_behalf_of: AztecAddress 249 | ) { > 250 | assert(false, "Not implemented"); | ^ 251 | let inner_hash = compute_inner_authwit_hash( 252 | [(*context).msg_sender().to_field(), (*context).selector().to_field(), (*context).get_args_hash()] 253 | ); at false (../../../noir-projects/aztec-nr/authwit/src/auth.nr:250:12) at assert_current_call_valid_authwit_public(&mut context, from) (../../../noir-projects/noir-contracts/contracts/token_contract/src/main.nr:259:13) at aztec (../../../noir-projects/noir-contracts/contracts/token_contract/src/main.nr:14:3) at Token.burn_public at TokenBridge.exit_to_l1_public at Uniswap._approve_bridge_and_exit_input_asset_to_L1 ``` Part of #8985.
- Loading branch information