File "/aquarius/aquarius/run.py", line 90, in <module>
if bool(int(os.environ.get('EVENTS_ALLOW', '0'))):
ValueError: invalid literal for int() with base 10: ''
After commenting above env var, another error is thrown:
Traceback (most recent call last):
File "./events-monitor-main.py", line 49, in <module>
run_events_monitor()
File "./events-monitor-main.py", line 41, in run_events_monitor
monitor = EventsMonitor(Web3Provider.get_web3(), config_file)
File "/aquarius/aquarius/events/events_monitor.py", line 48, in __init__
self._updater = MetadataUpdater(self._oceandb, self._web3, ConfigProvider.get_config())
File "/aquarius/aquarius/events/metadata_updater.py", line 35, in __init__
assert self._checksum_ocean, \
AssertionError: Ocean token address is not found: addresses=dict_keys(['DTFactory', 'BFactory', 'FixedRateExchange', 'Metadata']).
Please add the "Ocean" token address in the address.json file or set the `OCEAN_ADDRESS` environment variable.
The text was updated successfully, but these errors were encountered:
The first error can be avoided, will put in a fix for this. The assertion about Ocean token is telling what is the problem and how to solve it, so this is not a bug.
aquarius/Dockerfile
Line 39 in 901df1f
The text was updated successfully, but these errors were encountered: