Skip to content

Commit

Permalink
Links and resource adjustments
Browse files Browse the repository at this point in the history
Signed-off-by: Fabiano <[email protected]>
  • Loading branch information
zosorock committed Jun 22, 2024
2 parents 246f68d + 38e7ad8 commit 61f0a40
Show file tree
Hide file tree
Showing 174 changed files with 6,493 additions and 1,423 deletions.
77 changes: 51 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ cli = [
aleo-cli = [ "snarkvm-synthesizer/aleo-cli" ]
async = [ "snarkvm-ledger/async", "snarkvm-synthesizer/async" ]
cuda = [ "snarkvm-algorithms/cuda" ]
history = [ "snarkvm-synthesizer/history" ]
parameters_no_std_out = [ "snarkvm-parameters/no_std_out" ]
noconfig = [ ]
rocks = [ "snarkvm-ledger/rocks", "snarkvm-synthesizer/rocks" ]
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@ Alternatively, you can install `snarkvm` by building from the source code as fol

```bash
# Download the source code
git clone https://github.com/AleoNet/snarkvm && cd snarkvm

git clone --branch mainnet --single-branch https://github.com/AleoNet/snarkVM.git
cd snarkVM
git checkout tags/testnet-beta
# Install snarkVM
$ cargo install --path .
cargo install --path .
```

Now to use `snarkvm`, in your terminal, run:
Expand Down
2 changes: 1 addition & 1 deletion algorithms/src/r1cs/test_constraint_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ impl<F: Field> TestConstraintSystem<F> {
ns_idx
}
Entry::Occupied(e) => {
let interned_segments = e.remove_entry().0;
let interned_segments = e.swap_remove_entry().0;
panic!("tried to create object at existing path: {}", self.unintern_path(interned_segments));
}
}
Expand Down
Loading

0 comments on commit 61f0a40

Please sign in to comment.