Skip to content

Commit 4317222

Browse files
apollo_consensus_orchestrator_config: fix skip_write_height merge conflict (#10723)
1 parent e5d1a8c commit 4317222

File tree

1 file changed

+0
-3
lines changed
  • crates/apollo_consensus_orchestrator_config/src

1 file changed

+0
-3
lines changed

crates/apollo_consensus_orchestrator_config/src/config.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,13 @@ use apollo_config::dumping::{ser_optional_param, ser_param, SerializeConfig};
1212
use apollo_config::secrets::Sensitive;
1313
use apollo_config::{ParamPath, ParamPrivacyInput, SerializedParam};
1414
use serde::{Deserialize, Serialize};
15-
use starknet_api::block::BlockNumber;
1615
use starknet_api::core::{ChainId, ContractAddress};
1716
use url::Url;
1817
use validator::Validate;
1918

2019
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq)]
2120
pub struct CendeConfig {
2221
pub recorder_url: Sensitive<Url>,
23-
pub skip_write_height: Option<BlockNumber>,
2422

2523
// Retry policy.
2624
#[serde(deserialize_with = "deserialize_seconds_to_duration")]
@@ -38,7 +36,6 @@ impl Default for CendeConfig {
3836
.parse::<Url>()
3937
.expect("recorder_url must be a valid Recorder URL")
4038
.into(),
41-
skip_write_height: None,
4239
max_retry_duration_secs: Duration::from_secs(3),
4340
min_retry_interval_ms: Duration::from_millis(50),
4441
max_retry_interval_ms: Duration::from_secs(1),

0 commit comments

Comments
 (0)