Skip to content
Merged
Changes from all commits
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
8 changes: 4 additions & 4 deletions dash/src/network/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ use bincode_derive::{Decode, Encode};
#[repr(u8)]
#[cfg_attr(feature = "bincode", derive(Encode, Decode))]
pub enum Network {
/// Classic Dash Core Payment Chain
/// Dash mainnet, the production network for real transactions.
Dash,
/// Dash's testnet network.
/// Dash public test network for protocol-level testing without real funds.
Testnet,
/// Dash's devnet network.
/// Dash development network, an isolated environment for feature development and testing.
Devnet,
/// Bitcoin's regtest network.
/// Local regression testing network for deterministic, offline testing with instant block generation.
Regtest,
}

Expand Down
Loading