mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-02 04:44:27 +01:00
The component UIExtensionPoint was injecting IEnumerable<IUIExtension> and then filtering on those. As the number of IUIExtension grows, this operation grows at O(n). Now we use UIExtensionsRegistry instead which use lookups. O(1)