Skip to content

Commit

Permalink
v3.2.6.1
Browse files Browse the repository at this point in the history
* Fixed startup for OpenBeta setup
  • Loading branch information
apoeana committed May 30, 2024
1 parent cfcb0bb commit 71c9fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/etny-node.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self):

logger.info("Configuration network is: %s", self.__network)

if self.__network == None or self.__network == 'AUTO' or self.__network == "POLYGON":
if self.__network == None or self.__network in {'AUTO', 'OPENBETA'}:
logger.info("Network is automatic, determining gas value for POLYGON");
try:
if self.__rpc_polygon == None:
Expand Down

0 comments on commit 71c9fed

Please sign in to comment.