Skip to content

Commit

Permalink
Merge branch 'master' into tf/remove-brillig
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Apr 24, 2024
2 parents a10ba1d + 1801db8 commit 298fcfe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/mirror-noir-subrepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ concurrency:
cancel-in-progress: false
on:
workflow_dispatch: {}
push:
branches:
- master
paths:
- "noir/noir-repo/**"
- "!noir/noir-repo/.gitrepo"

jobs:
mirror_repo:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ They can be emitted by both public and private functions.
:::danger
- Emitting unencrypted events from private function is a significant privacy leak and it should be considered by the developer whether it is acceptable.
- Unencrypted events are currently **NOT** linked to the contract emitting them, so it is practically a [`debug_log`](../oracles/main.md#a-few-useful-inbuilt-oracles).

:::

### Call emit_unencrypted_log
Expand Down
4 changes: 2 additions & 2 deletions yarn-project/watch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ debounce() {
local run_id=$(uuidgen)
echo "$run_id" > ".debounce-$group_id"
(
sleep $DEBOUNCE_DURATION;
sleep $DEBOUNCE_DURATION;
local current_id=$(cat ".debounce-$group_id");
if [ "$run_id" = "${current_id}" ]; then
"$@"
Expand All @@ -24,7 +24,7 @@ debounce() {
# Start typescript watch process in the background and store process ID in a file
start_tsc_watch() {
local tsc_bin=$(yarn bin tsc)
$tsc_bin -b tsconfig.json --watch &
$tsc_bin -b tsconfig.json --watch --preserveWatchOutput &
TSC_PID=$!
echo "$TSC_PID" > .tsc.pid
}
Expand Down

0 comments on commit 298fcfe

Please sign in to comment.