Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion examples/local.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ fqdn = "example1.com"
service = "kaspa"
tls = true
transport-type = "wrpc-borsh"
network = "testnet-11"
network = "testnet-12"
fqdn = "example2.com"

2 changes: 1 addition & 1 deletion src/params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use crate::imports::*;
pub static NETWORKS: &[NetworkId] = &[
NetworkId::new(NetworkType::Mainnet),
NetworkId::with_suffix(NetworkType::Testnet, 10),
NetworkId::with_suffix(NetworkType::Testnet, 11),
NetworkId::with_suffix(NetworkType::Testnet, 12),
// NetworkId::new(NetworkType::Devnet),
// NetworkId::new(NetworkType::Simnet),
];
Expand Down