Skip to content
Open
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
4 changes: 4 additions & 0 deletions wire/protocol.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ const (
// TestNet3 represents the test network (version 3).
TestNet3 BitcoinNet = 0x0709110b

// TestNet4 represents the test network (version 4).
TestNet4 BitcoinNet = 0x283f161c

// SimNet represents the simulation test network.
SimNet BitcoinNet = 0x12141c16
)
Expand All @@ -165,6 +168,7 @@ var bnStrings = map[BitcoinNet]string{
MainNet: "MainNet",
TestNet: "TestNet",
TestNet3: "TestNet3",
TestNet4: "TestNet4",
SimNet: "SimNet",
}

Expand Down