Skip to content

Commit b3e72d3

Browse files
uri-99Oppen
authored andcommitted
fix: batcher listen on 0.0.0.0
1 parent 75d1c43 commit b3e72d3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

batcher/aligned-batcher/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ async fn main() -> Result<(), BatcherError> {
5555
.expect("Error listening for new blocks exiting")
5656
}
5757
});
58-
58+
5959
batcher.metrics.inc_batcher_restart();
60-
61-
let addr = format!("localhost:{}", port);
60+
61+
let addr = format!("0.0.0.0:{}", port);
6262
batcher.listen_connections(&addr, cli.cert, cli.key).await?;
6363

6464
Ok(())

0 commit comments

Comments
 (0)