Skip to content

Commit ad9cdf1

Browse files
committed
resolve conflicts and fixes
1 parent 660bbe1 commit ad9cdf1

File tree

6 files changed

+3848
-5598
lines changed

6 files changed

+3848
-5598
lines changed

Cargo.lock

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

crates/apollo_consensus_orchestrator/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,10 @@ apollo_starknet_client.workspace = true
5555
apollo_state_sync_types = { workspace = true, features = ["testing"] }
5656
apollo_storage = { workspace = true, features = ["testing"] }
5757
apollo_test_utils.workspace = true
58-
<<<<<<< HEAD
5958
apollo_time = { workspace = true, features = ["testing", "tokio"] }
60-
||||||| 511a6f78a
61-
=======
6259
assert_matches.workspace = true
6360
blockifier = { workspace = true, features = ["testing"] }
6461
blockifier_test_utils = { workspace = true }
65-
>>>>>>> origin/constaking
6662
cairo-lang-casm.workspace = true
6763
cairo-lang-utils.workspace = true
6864
cairo-vm.workspace = true

crates/apollo_consensus_orchestrator/src/committee_manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ where
208208
let result = data_chunks
209209
.map(|chunk| {
210210
T::try_from(
211-
chunk.try_into().unwrap_or_else(|_| panic!("chunk size must be N: {}.", N)),
211+
chunk.try_into().unwrap_or_else(|_| panic!("chunk size must be N: {N}.")),
212212
)
213213
})
214214
.collect::<Result<Vec<_>, _>>()?;

0 commit comments

Comments
 (0)