config: adjust default testnet magic for RC1 testnet

It's 827601742, N3T1, see https://github.com/neo-project/neo-node/releases/tag/v3.0.0-rc1
This commit is contained in:
Roman Khimov 2021-03-24 10:51:25 +03:00
parent 20144e6137
commit b2944bcf8a
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
ProtocolConfiguration:
Magic: 1951352142
Magic: 827601742
MaxTraceableBlocks: 2102400
SecondsPerBlock: 15
MemPoolSize: 50000

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 = 0x744f454e // 1951352142
TestNet Magic = 0x3154334e // 827601742
// 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.