refactor event system
Some checks are pending
BlockStorage/repertory/pipeline/head Build queued...

This commit is contained in:
2025-01-23 19:34:43 -06:00
parent efcb319d8c
commit eb26f59059

View File

@ -83,8 +83,8 @@ void event_system::process_events() {
};
for (const auto &evt : event_list) {
notify_events("", *evt.get());
notify_events(evt->get_name(), *evt.get());
notify_events("", *evt);
notify_events(evt->get_name(), *evt);
}
lock_and_notify();