Skip to content

Commit

Permalink
fix: add .rpc for consistency in engine settings (#4158)
Browse files Browse the repository at this point in the history
fix: add .rpc for consistency
  • Loading branch information
kylezs authored Oct 24, 2023
1 parent f9bf5e5 commit 9cb4669
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ pub struct DotOptions {
pub struct BtcOptions {
#[clap(long = "btc.rpc.http_endpoint")]
pub btc_http_endpoint: Option<String>,
#[clap(long = "btc.basic_auth_user")]
#[clap(long = "btc.rpc.basic_auth_user")]
pub btc_basic_auth_user: Option<String>,
#[clap(long = "btc.basic_auth_password")]
#[clap(long = "btc.rpc.basic_auth_password")]
pub btc_basic_auth_password: Option<String>,

#[clap(long = "btc.backup_rpc.http_endpoint")]
Expand Down

0 comments on commit 9cb4669

Please sign in to comment.