Premix: Remove `MordenNet` to match main program

Morden network has not had a working configuration in Nimbus for a few years,
so it's been removed form the main program.  Remove it from premix as well.

Signed-off-by: Jamie Lokier <jamie@shareable.org>
This commit is contained in:
Jamie Lokier 2021-04-27 09:35:02 +01:00
parent 90cefc7a3d
commit 33481064fd
No known key found for this signature in database
GPG Key ID: CBC25C68435C30A2
1 changed files with 0 additions and 1 deletions

View File

@ -41,7 +41,6 @@ proc processU256(val: string, o: var Uint256): ConfigStatus =
proc processNetId(val: string, o: var PublicNetwork): ConfigStatus =
case val.toLowerAscii()
of "main": o = MainNet
of "morden": o = MordenNet
of "ropsten": o = RopstenNet
of "rinkeby": o = RinkebyNet
of "goerli": o = GoerliNet