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
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ tests.tsv
# Generated API docs should not be committed
website/static/api-docs/

ledger/3.0.0devnet
ledger/3.0.0mainnet
ledger/3.0.1devnet
ledger/berkeley_rc1
mina-workdir
ledger/berkeley-devnet
mina-workdir
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ clean: ## Clean build artifacts
.PHONY: download-circuits
download-circuits: ## Download the circuits used by Mina from GitHub
@if [ ! -d "circuit-blobs" ]; then \
git clone --depth 1 https://github.com/o1-labs/circuit-blobs.git; \
git clone --depth 1 https://github.com/o1-labs/circuit-blobs.git -b dw/add-berkeley-687bf44e97328e1cc0e85291663009410f64bd99; \
ln -s "$$PWD"/circuit-blobs/3.0.0mainnet ledger/; \
ln -s "$$PWD"/circuit-blobs/3.0.1devnet ledger/; \
ln -s "$$PWD"/circuit-blobs/berkeley-devnet ledger/; \
else \
echo "circuit-blobs already exists, skipping download."; \
fi
Expand Down
2 changes: 1 addition & 1 deletion core/src/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ pub mod devnet {
};

pub const CIRCUITS_CONFIG: CircuitsConfig = CircuitsConfig {
directory_name: "3.0.1devnet",
directory_name: "berkeley-devnet",

step_transaction_gates: "step-step-proving-key-transaction-snark-transaction-0-c33ec5211c07928c87e850a63c6a2079",
wrap_transaction_gates:
Expand Down
Loading