We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75d1c43 commit b3e72d3Copy full SHA for b3e72d3
1 file changed
batcher/aligned-batcher/src/main.rs
@@ -55,10 +55,10 @@ async fn main() -> Result<(), BatcherError> {
55
.expect("Error listening for new blocks exiting")
56
}
57
});
58
-
+
59
batcher.metrics.inc_batcher_restart();
60
61
- let addr = format!("localhost:{}", port);
+ let addr = format!("0.0.0.0:{}", port);
62
batcher.listen_connections(&addr, cli.cert, cli.key).await?;
63
64
Ok(())
0 commit comments