Skip to content

Commit 76cd7a9

Browse files
committed
Minor cleanup
1 parent 0aefd5b commit 76cd7a9

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/bitcoin.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ impl BitcoinNode {
129129
let _ = self.load_wallet(&NodeKind::Bitcoin.to_string()).await;
130130
let _ = self.load_wallet(&NodeKind::Sequencer.to_string()).await;
131131
let _ = self.load_wallet(&NodeKind::BatchProver.to_string()).await;
132+
let _ = self.load_wallet(&NodeKind::LightClientProver.to_string()).await;
132133
}
133134

134135
// Switch this over to Node signature once we add support for docker to citrea nodes

src/light_client_prover.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ use crate::node::Node;
1010
pub type LightClientProver = Node<FullLightClientProverConfig>;
1111

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

0 commit comments

Comments
 (0)