Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,9 @@ function build_and_test {
echo "Makefile build complete, starting TXEs and adding dependent tests..."
make_pid=

if [ -z "${1:-}" ]; then
# TODO: Handle this better to they can be run as part of the Makefile dependency tree.
start_txes
make noir-projects-txe-tests
fi
# TODO: Handle this better so they can be run as part of the Makefile dependency tree.
start_txes
make noir-projects-txe-tests

# Signal tests complete, handled by parallel -E STOP.
echo STOP >> $test_cmds_file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::protocol::{
};

global MAX_PRIVATE_EVENTS_PER_TXE_QUERY: u32 = 5;
global MAX_EVENT_SERIALIZATION_LENGTH: u32 = 12;
global MAX_EVENT_SERIALIZATION_LENGTH: u32 = 10;

pub unconstrained fn deploy<let M: u32, let N: u32, let P: u32>(
path: str<N>,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
InvalidNote has a packed length of 10 fields, which exceeds the maximum allowed length of 9 fields
InvalidNote has a packed length of 9 fields, which exceeds the maximum allowed length of 8 fields
Loading