We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c22f40 commit 76a48c6Copy full SHA for 76a48c6
internal/config/config.go
@@ -103,6 +103,10 @@ func GetConfig() *Config {
103
func (c *Config) populateNetworkMagic() error {
104
if c.Node.Network != "" {
105
switch c.Node.Network {
106
+ case "preview":
107
+ c.Node.NetworkMagic = libada.Preview.ProtocolMagic()
108
+ case "preprod":
109
+ c.Node.NetworkMagic = libada.preprod.ProtocolMagic()
110
case "testnet":
111
c.Node.NetworkMagic = libada.Testnet.ProtocolMagic()
112
case "mainnet":
0 commit comments