diff --git a/.github/workflows/mirror-noir-subrepo.yml b/.github/workflows/mirror-noir-subrepo.yml index fb6968cc940..abcae31ac0a 100644 --- a/.github/workflows/mirror-noir-subrepo.yml +++ b/.github/workflows/mirror-noir-subrepo.yml @@ -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: diff --git a/docs/docs/developers/contracts/writing_contracts/events/emit_event.md b/docs/docs/developers/contracts/writing_contracts/events/emit_event.md index 0c461c6317d..5ff18cce72e 100644 --- a/docs/docs/developers/contracts/writing_contracts/events/emit_event.md +++ b/docs/docs/developers/contracts/writing_contracts/events/emit_event.md @@ -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 diff --git a/yarn-project/watch.sh b/yarn-project/watch.sh index 88cf51e6b60..d52f682f692 100755 --- a/yarn-project/watch.sh +++ b/yarn-project/watch.sh @@ -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 "$@" @@ -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 }