forked from TrueCloudLab/neoneo-go
7d91a3a89e
This way we can use it in scripts and cli.
8 lines
191 B
Go
8 lines
191 B
Go
package testchain
|
|
|
|
import "github.com/nspcc-dev/neo-go/pkg/config/netmode"
|
|
|
|
// Network returns test chain network's magic number.
|
|
func Network() netmode.Magic {
|
|
return netmode.UnitTestNet
|
|
}
|