Skip to content

Commit

Permalink
fix: cli argument duplicate (#837)
Browse files Browse the repository at this point in the history
Description
---
Fix the duplicate long alias cli.
Remove unnecessary files.

Motivation and Context
---

How Has This Been Tested?
---

What process can a PR reviewer use to test or verify this change?
---


Breaking Changes
---

- [x] None
- [ ] Requires data directory to be deleted
- [ ] Other - Please specify
  • Loading branch information
Cifko authored Dec 13, 2023
1 parent b54bde8 commit cb2d694
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 1,265 deletions.
2 changes: 1 addition & 1 deletion applications/tari_validator_node/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub struct Cli {
/// Bind address for JSON-rpc server
#[clap(long, alias = "rpc-address")]
pub json_rpc_address: Option<SocketAddr>,
#[clap(long, alias = "rpc-address")]
#[clap(long, alias = "http-ui-address")]
pub http_ui_address: Option<SocketAddr>,
#[clap(long, env = "TARI_VN_UI_CONNECT_ADDRESS")]
pub ui_connect_address: Option<String>,
Expand Down
Loading

0 comments on commit cb2d694

Please sign in to comment.