Skip to content

Commit 988e8f5

Browse files
Rename aggregation batcher_server package to just batcher
1 parent fe7ff8c commit 988e8f5

File tree

11 files changed

+6
-6
lines changed

11 files changed

+6
-6
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,10 +315,10 @@ agg_mode_run_migrations: agg_mode_docker_up
315315
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin migrate -- postgres://postgres:postgres@localhost:5435/
316316

317317
agg_mode_batcher_start_local: agg_mode_run_migrations
318-
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin batcher_server -- config-files/config-agg-mode-batcher.yaml
318+
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin batcher -- config-files/config-agg-mode-batcher.yaml
319319

320320
agg_mode_batcher_start_ethereum_package: agg_mode_run_migrations
321-
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin batcher_server -- config-files/config-agg-mode-batcher-ethereum-package.yaml
321+
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin batcher -- config-files/config-agg-mode-batcher-ethereum-package.yaml
322322

323323
agg_mode_batcher_poller_start_local: agg_mode_run_migrations
324324
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin agg_mode_batcher_poller -- config-files/config-agg-mode-batcher.yaml

aggregation_mode/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aggregation_mode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace]
22
resolver = "2"
3-
members = ["./batcher_server", "./proof_aggregator", "./db", "./payments_poller"]
3+
members = ["./batcher", "./proof_aggregator", "./db", "./payments_poller"]
44

55
[workspace.package]
66
version = "0.1.0"

aggregation_mode/batcher_server/Cargo.toml renamed to aggregation_mode/batcher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "batcher_server"
2+
name = "batcher"
33
version = "0.1.0"
44
edition = "2021"
55

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

aggregation_mode/batcher_server/src/main.rs renamed to aggregation_mode/batcher/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use std::env;
22

3-
use batcher_server::{config::Config, db::Db, http::BatcherServer};
3+
use batcher::{config::Config, db::Db, http::BatcherServer};
44
use tracing_subscriber::{EnvFilter, FmtSubscriber};
55

66
fn read_config_filepath_from_args() -> String {

0 commit comments

Comments
 (0)