Skip to content

Commit

Permalink
Properly initialize args
Browse files Browse the repository at this point in the history
  • Loading branch information
lsankar4033 committed Aug 13, 2020
1 parent 7125680 commit 770627d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/instance_configs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# NOTE: we may have multiple configs here identified by name in the future
from sclients import ENR

DEFAULT_BEACON_STATE_PATH = 'ssz/default.ssz'
DEFAULT_ENR = {
Expand All @@ -16,4 +17,7 @@
'beacon_state_path': DEFAULT_BEACON_STATE_PATH,
'enr': DEFAULT_ENR
}
DEFAULT_ARGS = DEFAULT_INSTANCE_CONFIG
DEFAULT_ARGS = {
'beacon_state_path': DEFAULT_BEACON_STATE_PATH,
'enr': ENR(**DEFAULT_ENR)
}

0 comments on commit 770627d

Please sign in to comment.