netmode: fix testnet magic

Somehow missed this in 134c7acff1.
This commit is contained in:
Roman Khimov 2021-05-07 16:40:08 +03:00
parent bde4e6a91f
commit 02eb40376e

View file

@ -6,7 +6,7 @@ const (
// MainNet contains magic code used in the NEO main official network.
MainNet Magic = 0x004f454e // 5195086
// TestNet contains magic code used in the NEO testing network.
TestNet Magic = 0x3154334e // 827601742
TestNet Magic = 0x3254334e // N3T2
// PrivNet contains magic code usually used for NEO private networks.
PrivNet Magic = 56753 // docker privnet
// UnitTestNet is a stub magic code used for testing purposes.