Skip to content

Commit 2b4dd0b

Browse files
committed
fix merge conflicts
1 parent d430abf commit 2b4dd0b

File tree

7 files changed

+11
-40
lines changed

7 files changed

+11
-40
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ educe = { version = "0.6", default-features = false, features = [
8282
enum-iterator = "1.2"
8383
enum_dispatch = "0.3.13"
8484
# Workspace members
85-
fuel-block-aggregator-api = { version = "0.47.1", path = "crates/services/block_aggregator_api" }
85+
fuel-core-block-aggregator-api = { version = "0.47.1", path = "crates/services/block_aggregator_api" }
8686
fuel-core = { version = "0.47.1", path = "./crates/fuel-core", default-features = false }
8787
fuel-core-bin = { version = "0.47.1", path = "./bin/fuel-core" }
8888
fuel-core-chain-config = { version = "0.47.1", path = "./crates/chain-config", default-features = false }

bin/fuel-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ clap = { workspace = true, features = ["derive", "env", "string"] }
5555
const_format = { version = "0.2", optional = true }
5656
dirs = "4.0"
5757
dotenvy = { version = "0.15", optional = true }
58-
fuel-block-aggregator-api = { workspace = true }
58+
fuel-core-block-aggregator-api = { workspace = true }
5959
fuel-core = { workspace = true, features = ["wasm-executor"] }
6060
fuel-core-chain-config = { workspace = true }
6161
fuel-core-metrics = { workspace = true }

bin/fuel-core/src/cli/run/rpc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ pub struct RpcArgs {
1313
}
1414

1515
impl RpcArgs {
16-
pub fn into_config(self) -> fuel_block_aggregator_api::integration::Config {
17-
fuel_block_aggregator_api::integration::Config {
16+
pub fn into_config(self) -> fuel_core_block_aggregator_api::integration::Config {
17+
fuel_core_block_aggregator_api::integration::Config {
1818
addr: net::SocketAddr::new(self.rpc_ip, self.rpc_port),
1919
}
2020
}

crates/fuel-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ clap = { workspace = true, features = ["derive"] }
6060
cosmrs = { version = "0.21", optional = true }
6161
derive_more = { version = "0.99" }
6262
enum-iterator = { workspace = true }
63-
fuel-block-aggregator-api = { workspace = true }
63+
fuel-core-block-aggregator-api = { workspace = true }
6464
fuel-core-chain-config = { workspace = true, features = ["std"] }
6565
fuel-core-compression-service = { workspace = true }
6666
fuel-core-consensus-module = { workspace = true }

crates/fuel-core/src/database/database_description/block_aggregator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::database::database_description::DatabaseDescription;
2-
use fuel_block_aggregator_api::db::storage_db::table::Column;
2+
use fuel_core_block_aggregator_api::db::storage_db::table::Column;
33
use fuel_core_types::fuel_types::BlockHeight;
44

55
#[derive(Clone, Copy, Debug)]

tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ aws-sdk-kms = { version = "1.37.0", optional = true }
3838
clap = { workspace = true }
3939
cynic = { workspace = true }
4040
ethers = "2"
41-
fuel-block-aggregator-api = { version = "0.46.0", path = "../crates/services/block_aggregator_api" }
41+
fuel-core-block-aggregator-api = { workspace = true }
4242
fuel-core = { path = "../crates/fuel-core", default-features = false, features = [
4343
"p2p",
4444
"relayer",

0 commit comments

Comments
 (0)