Skip to content

Commit d64f3ff

Browse files
committed
producer-dashboard: remove as unused
1 parent 2deccfa commit d64f3ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+25
-19762
lines changed

Cargo.lock

Lines changed: 17 additions & 550 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ members = [
3232
"tools/archive-breadcrumb-compare",
3333
"tools/webrtc-sniffer",
3434

35-
"producer-dashboard",
36-
3735
"fuzzer",
3836
]
3937

@@ -151,7 +149,6 @@ mina-node-native = { path = "node/native" }
151149
mina-node-testing = { path = "node/testing" }
152150
mina-p2p-messages = { path = "mina-p2p-messages" }
153151
mina-poseidon = { git = "https://github.com/o1-labs/proof-systems", rev = "0b0fd5fe73964d2a3628c788e40ead819a8a806d" }
154-
mina-producer-dashboard = { path = "producer-dashboard" }
155152
mina-signer = { git = "https://github.com/o1-labs/proof-systems", rev = "0b0fd5fe73964d2a3628c788e40ead819a8a806d" }
156153
mina-transport = { path = "tools/transport" }
157154
mio = { version = "1.0.4", features = ["os-poll", "net"] }

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ nextest-vrf: ## Run VRF tests with cargo-nextest, requires nightly Rust
355355
docker-build-all: docker-build-bootstrap-sandbox docker-build-debugger \
356356
docker-build-frontend docker-build-fuzzing \
357357
docker-build-light docker-build-light-focal docker-build-mina \
358-
docker-build-mina-testing docker-build-producer-dashboard \
358+
docker-build-mina-testing \
359359
docker-build-test ## Build all Docker images
360360

361361
.PHONY: docker-build-bootstrap-sandbox
@@ -415,11 +415,6 @@ docker-build-mina-testing: ## Build Mina testing Docker image
415415
docker build -t $(DOCKER_ORG)/mina-rust-testing:$(GIT_COMMIT) \
416416
-f node/testing/docker/Dockerfile.mina node/testing/docker/
417417

418-
.PHONY: docker-build-producer-dashboard
419-
docker-build-producer-dashboard: ## Build producer dashboard Docker image
420-
docker build -t $(DOCKER_ORG)/mina-rust-producer-dashboard:$(GIT_COMMIT) \
421-
-f docker/producer-dashboard/Dockerfile .
422-
423418
.PHONY: docker-build-test
424419
docker-build-test: ## Build test Docker image
425420
docker build -t $(DOCKER_ORG)/mina-rust-test:$(GIT_COMMIT) \

docker-compose.archive.devnet.compare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ services:
5656
psql postgres://postgres:${POSTGRES_PASSWORD}@postgres-mina-rust:${PG_PORT}/${PG_DB} -f /sql/archive_schema.sql;
5757
'
5858
volumes:
59-
- ./producer-dashboard/src/archive/sql:/sql
59+
- ./sql/archive:/sql
6060
depends_on:
6161
postgres-ocaml:
6262
condition: service_healthy

docker-compose.archive.devnet.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,12 @@ services:
3333
psql postgres://postgres:${POSTGRES_PASSWORD}@postgres-mina-rust:${PG_PORT}/${PG_DB} -f /sql/archive_schema.sql;
3434
'
3535
volumes:
36-
- ./producer-dashboard/src/archive/sql:/sql
36+
- ./sql/archive:/sql
3737
depends_on:
3838
postgres-mina-rust:
3939
condition: service_healthy
4040

4141
archive-mina-rust:
42-
# Note: Modified with patch ./docker/producer-dashboard/output_binprot_breadcrumbs.patch to output binprot breadcrumbs
4342
image: adrnagy/mina-archive
4443
container_name: archive-mina-rust
4544
env_file:

docker/producer-dashboard/.dockerignore

Lines changed: 0 additions & 10 deletions
This file was deleted.

docker/producer-dashboard/Dockerfile

Lines changed: 0 additions & 109 deletions
This file was deleted.

docker/producer-dashboard/output_binprot_breadcrumbs.patch

Lines changed: 0 additions & 120 deletions
This file was deleted.

frontend/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ COPY mina-p2p-messages ./mina-p2p-messages
7272
COPY node ./node
7373
COPY p2p ./p2p
7474
COPY poseidon ./poseidon
75-
COPY producer-dashboard ./producer-dashboard
7675
COPY snark ./snark
7776
COPY tools ./tools
7877
COPY vrf ./vrf

node/native/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ tracing-subscriber = { workspace = true }
4040
vrf = { workspace = true }
4141
warp = { workspace = true }
4242

43-
[dev-dependencies]
44-
mina-producer-dashboard = { workspace = true }
45-
4643
[features]
4744
default = ["p2p-libp2p"]
4845
p2p-webrtc = ["mina-node-common/p2p-webrtc"]

0 commit comments

Comments
 (0)