bump everything

This commit is contained in:
Andrew Camilleri
2025-01-29 09:15:54 +01:00
parent 90684c9f0b
commit f6ecc8fd72
16 changed files with 24 additions and 23 deletions

View File

@@ -645,7 +645,7 @@ public class MicroNodeService : EventHostedServiceBase
PushEvent(new CreatePayoutEvt());
}, cancellationToken);
}else if (evt is StoreRemovedEvent storeRemovedEvent)
}else if (evt is StoreEvent.Removed storeRemovedEvent)
{
_storeSettings.Remove(storeRemovedEvent.StoreId);
_ownerSettings.Remove(storeRemovedEvent.StoreId);
@@ -665,7 +665,7 @@ public class MicroNodeService : EventHostedServiceBase
{
Subscribe<PayoutEvent>();
Subscribe<CreatePayoutEvt>();
Subscribe<StoreRemovedEvent>();
Subscribe<StoreEvent.Removed>();
Subscribe<CheckActiveTransactions>();
base.SubscribeToEvents();
}