Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
yaziciahmet committed Oct 8, 2024
1 parent 0aefd5b commit 76cd7a9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/bitcoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ impl BitcoinNode {
let _ = self.load_wallet(&NodeKind::Bitcoin.to_string()).await;
let _ = self.load_wallet(&NodeKind::Sequencer.to_string()).await;
let _ = self.load_wallet(&NodeKind::BatchProver.to_string()).await;
let _ = self.load_wallet(&NodeKind::LightClientProver.to_string()).await;
}

// Switch this over to Node signature once we add support for docker to citrea nodes
Expand Down
1 change: 0 additions & 1 deletion src/light_client_prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use crate::node::Node;
pub type LightClientProver = Node<FullLightClientProverConfig>;

impl LightClientProver {
// TODO: remove _l at the end
pub async fn wait_for_l1_height(&self, height: u64, timeout: Option<Duration>) -> Result<()> {
let start = SystemTime::now();
let timeout = timeout.unwrap_or(Duration::from_secs(600));
Expand Down

0 comments on commit 76cd7a9

Please sign in to comment.