allways/validator/event_watcher.py:382-413 routes events with if name == 'MinerActivated': .... Renaming an event in the contract metadata would silently route to the default branch. Materialise the event names as an enum (or constants module) so a missing import surfaces as an ImportError rather than a runtime no-op.
allways/validator/event_watcher.py:382-413 routes events with
if name == 'MinerActivated': .... Renaming an event in the contract metadata would silently route to the default branch. Materialise the event names as an enum (or constants module) so a missing import surfaces as anImportErrorrather than a runtime no-op.