Skip to content

Commit

Permalink
Torii bind default addr to 0.0.0.0 (dojoengine#1509)
Browse files Browse the repository at this point in the history
  • Loading branch information
broody committed Feb 1, 2024
1 parent 8224b91 commit 1af041c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/torii/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ struct Args {
start_block: u64,

/// Address to serve api endpoints at.
#[arg(long, value_name = "SOCKET", default_value = ":8080", value_parser = parse_socket_address)]
#[arg(long, value_name = "SOCKET", default_value = "0.0.0.0:8080", value_parser = parse_socket_address)]
addr: SocketAddr,

/// Port to serve Libp2p TCP & UDP Quic transports
Expand Down

0 comments on commit 1af041c

Please sign in to comment.