Merge pull request #1954 from nspcc-dev/fix-testnet-tests

netmode: fix testnet magic
This commit is contained in:
Roman Khimov 2021-05-11 10:08:36 +03:00 committed by GitHub
commit a4b54b2e8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.