Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ContextualNetAddress parsing #433

Merged
merged 7 commits into from
Mar 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More renames to align deserialize struct like cli
  • Loading branch information
orgr committed Mar 20, 2024
commit 4265eec133cef071a611986d2a5e7cf8c936dc7a
4 changes: 4 additions & 0 deletions kaspad/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,16 @@ pub struct Args {
pub user_agent_comments: Vec<String>,
pub utxoindex: bool,
pub reset_db: bool,
#[serde(rename = "outpeers")]
pub outbound_target: usize,
#[serde(rename = "maxinpeers")]
pub inbound_limit: usize,
#[serde(rename = "rpcmaxclients")]
pub rpc_max_clients: usize,
pub enable_unsynced_mining: bool,
pub enable_mainnet_mining: bool,
pub testnet: bool,
#[serde(rename = "netsuffix")]
pub testnet_suffix: u32,
pub devnet: bool,
pub simnet: bool,
Expand Down
Loading