Skip to content

Commit

Permalink
Fix default mainchain addr
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash-L2L committed Jun 13, 2024
1 parent 9e6134c commit 21bbfbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static DEFAULT_DATA_DIR: LazyLock<Option<PathBuf>> =
Some(data_dir) => Some(data_dir.join("thunder")),
});

const DEFAULT_MAIN_ADDR: SocketAddr = ipv4_socket_addr([127, 0, 0, 1], 18443);
const DEFAULT_MAIN_ADDR: SocketAddr = ipv4_socket_addr([127, 0, 0, 1], 8332);

const DEFAULT_MAIN_USER: &str = "user";

Expand Down

0 comments on commit 21bbfbb

Please sign in to comment.