Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ZeroSync/ZeroSync
Browse files Browse the repository at this point in the history
  • Loading branch information
stillsaiko committed Dec 12, 2022
2 parents 5ccbe42 + 9322a50 commit c4539f1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 6 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
from setuptools import setup

# TODO fill missing information

setup(
name="zerosync",
license="FILL",
author="FILL",
author_email="FILL",
name="ZeroSync",
license="MIT",
author="ZeroSync Developers",
author_email="[email protected]",
packages=["zerosync"],
package_dir={"zerosync": "zerosync"},
include_package_data=True,
url="FILL",
keywords="FILL",
url="zerosync.org",
keywords="Bitcoin, STARK, Cairo",
)
2 changes: 2 additions & 0 deletions src/stark_verifier/air/transitions/frame.cairo
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
struct EvaluationFrame {
current_len: felt,
current: felt*,
next_len: felt,
next: felt*,
}
2 changes: 1 addition & 1 deletion src/stark_verifier/parser/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ impl WriteableWith<&ProcessorAir> for OodFrame {
ood_main_trace_frame.write_into(target);
ood_aux_trace_frame.clone().unwrap().write_into(target);

target.write_array(ood_constraint_evaluations);
target.write_sized_array(ood_constraint_evaluations);
}
}

Expand Down

0 comments on commit c4539f1

Please sign in to comment.