Skip to content

Commit 737fe5a

Browse files
uri-99Oppen
authored andcommitted
fix: batcher listen on 0.0.0.0
1 parent 7ecd5fb commit 737fe5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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)