From 11c5fdb8876dd85a94ef80bb30b43f850f3e1269 Mon Sep 17 00:00:00 2001 From: xdustinface Date: Sat, 7 Mar 2026 08:48:48 +0700 Subject: [PATCH] chore: update docs of `Network` entries --- dash/src/network/constants.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dash/src/network/constants.rs b/dash/src/network/constants.rs index 71f4c90ce..d7ba1fef2 100644 --- a/dash/src/network/constants.rs +++ b/dash/src/network/constants.rs @@ -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, }