Skip to content

Commit 79bd773

Browse files
Fix: rename the agg_mode_payments_poller package to just payments_poller
1 parent 7ea8db6 commit 79bd773

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,10 +324,10 @@ agg_mode_gateway_start_ethereum_package: agg_mode_run_migrations
324324
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin gateway -- config-files/config-agg-mode-gateway-ethereum-package.yaml
325325

326326
agg_mode_payments_poller_start_local: agg_mode_run_migrations
327-
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin agg_mode_payments_poller -- config-files/config-agg-mode-gateway.yaml
327+
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin payments_poller -- config-files/config-agg-mode-gateway.yaml
328328

329329
agg_mode_payments_poller_start_ethereum_package: agg_mode_run_migrations
330-
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin agg_mode_payments_poller -- config-files/config-agg-mode-gateway-ethereum-package.yaml
330+
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --bin payments_poller -- config-files/config-agg-mode-gateway-ethereum-package.yaml
331331

332332
AGG_MODE_SENDER ?= 0x70997970C51812dc3A010C7d01b50e0d17dc79C8
333333
agg_mode_gateway_send_payment:

aggregation_mode/Cargo.lock

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

aggregation_mode/payments_poller/Cargo.toml

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

aggregation_mode/payments_poller/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 agg_mode_payments_poller::{config::Config, db::Db, payments::PaymentsPoller};
3+
use payments_poller::{config::Config, db::Db, payments::PaymentsPoller};
44
use tracing_subscriber::{EnvFilter, FmtSubscriber};
55

66
fn read_config_filepath_from_args() -> String {

0 commit comments

Comments
 (0)