Skip to content

Commit

Permalink
Fix the stale directory name in README (#354)
Browse files Browse the repository at this point in the history
* Fix: stale directory name in README

It looks like this should the the target working directory for the repo, which is now `snark` rather than `algebra`.

* fix the trace

Co-authored-by: weikeng <[email protected]>
  • Loading branch information
rillian and weikengchen authored Sep 16, 2021
1 parent e0e29bf commit 7af2b44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rustup install stable
After that, use `cargo`, the standard Rust build tool, to build the libraries:
```bash
git clone https://github.com/arkworks-rs/snark.git
cd algebra
cd snark
cargo build --release
```

Expand Down
3 changes: 1 addition & 2 deletions relations/src/r1cs/trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ where
let span = subscriber
.span(id)
.expect("registry should have a span for the current ID");
let parents = span.parents();
for span in std::iter::once(span).chain(parents) {
for span in span.scope() {
let cont = f(span.metadata(), "");
if !cont {
break;
Expand Down

0 comments on commit 7af2b44

Please sign in to comment.