Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hansieodendaal committed Nov 27, 2023
1 parent c3d0235 commit ee25d1e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions applications/minotari_merge_mining_proxy/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub struct MergeMiningProxyConfig {
pub wallet_payment_address: String,
/// Stealth payment yes or no
pub stealth_payment: bool,
/// Range proof type - revealed_value or bullet_proof_plus: (default = bullet_proof_plus)
/// Range proof type - revealed_value or bullet_proof_plus: (default = revealed_value)
pub range_proof_type: RangeProofType,
}

Expand All @@ -96,7 +96,7 @@ impl Default for MergeMiningProxyConfig {
network: Default::default(),
wallet_payment_address: TariAddress::default().to_hex(),
stealth_payment: true,
range_proof_type: RangeProofType::BulletProofPlus,
range_proof_type: RangeProofType::RevealedValue,
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions applications/minotari_miner/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub struct MinerConfig {
pub wallet_payment_address: String,
/// Stealth payment yes or no
pub stealth_payment: bool,
/// Range proof type - revealed_value or bullet_proof_plus: (default = bullet_proof_plus)
/// Range proof type - revealed_value or bullet_proof_plus: (default = revealed_value)
pub range_proof_type: RangeProofType,
}

Expand Down Expand Up @@ -113,7 +113,7 @@ impl Default for MinerConfig {
wait_timeout_on_error: 10,
wallet_payment_address: TariAddress::default().to_hex(),
stealth_payment: true,
range_proof_type: RangeProofType::BulletProofPlus,
range_proof_type: RangeProofType::RevealedValue,
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions common/config/presets/f_merge_mining_proxy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ monerod_url = [# stagenet
#wallet_payment_address = "YOUR_WALLET_TARI_ADDRESS"
# Stealth payment yes or no (default: true)
#stealth_payment = true
# Range proof type - revealed_value or bullet_proof_plus: (default = "bullet_proof_plus")
#range_proof_type = "bullet_proof_plus"
# Range proof type - revealed_value or bullet_proof_plus: (default = "revealed_value")
#range_proof_type = "revealed_value"
4 changes: 2 additions & 2 deletions common/config/presets/g_miner.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@
#wallet_payment_address = "YOUR_WALLET_TARI_ADDRESS"
# Stealth payment yes or no (default: true)
#stealth_payment = true
# Range proof type - revealed_value or bullet_proof_plus: (default = "bullet_proof_plus")
#range_proof_type = "bullet_proof_plus"
# Range proof type - revealed_value or bullet_proof_plus: (default = "revealed_value")
#range_proof_type = "revealed_value"

0 comments on commit ee25d1e

Please sign in to comment.