Skip to content

Commit

Permalink
Merge pull request #2077 from get10101/fix/backwards-incompatible-cli…
Browse files Browse the repository at this point in the history
…-change

Fix backwards-incompatible CLI change
  • Loading branch information
luckysori authored Feb 21, 2024
2 parents ed0c7f3 + 7ef011b commit e908114
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion coordinator/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub struct Opts {
pub database: String,

/// The address to connect to the Electrs API.
#[clap(long, default_value = "http://localhost:3000")]
#[clap(long, default_value = "http://localhost:3000", aliases = ["esplora"])]
pub electrs: String,

/// If enabled, tokio runtime can be locally debugged with tokio_console
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct Opts {
pub network: Network,

/// The address to connect to the Electrs API.
#[clap(long, default_value = "http://localhost:3000")]
#[clap(long, default_value = "http://localhost:3000", aliases = ["esplora"])]
pub electrs: String,

/// The endpoint of the p2p-derivatives oracle
Expand Down

0 comments on commit e908114

Please sign in to comment.