From 0bcc41f5b70583ed2bbd79b57a79759072cf4c09 Mon Sep 17 00:00:00 2001 From: Edward Evans Date: Mon, 11 Nov 2019 14:23:13 +1000 Subject: [PATCH] Allow for custom networks named other than custom Signed-off-by: Edward Evans --- templates/config.toml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/config.toml.j2 b/templates/config.toml.j2 index 4e94bef..c055bb9 100644 --- a/templates/config.toml.j2 +++ b/templates/config.toml.j2 @@ -2,7 +2,7 @@ data-path="{{besu_data_dir}}" logging="{{besu_log_level}}" -{% if besu_network.lower() != "custom" %} +{% if besu_network.lower() in ["mainnet", "rinkeby", "goerli", "ropsten", "dev"] %} network="{{besu_network}}" {% else %} genesis-file="{{ besu_genesis_path }}"