Fix wallet ordering on creation

This commit is contained in:
TheXamlGuy
2024-07-07 21:27:37 +01:00
parent 45624031c0
commit afa72d8e14
3 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ namespace Wallet;
public class WalletCollectionInitializer(IHostEnvironment environment,
IComponentFactory componentFactory,
IWalletHostCollection Wallets) :
IWalletHostCollection wallets) :
IInitialization
{
public void Initialize()
@@ -25,7 +25,7 @@ public class WalletCollectionInitializer(IHostEnvironment environment,
WalletConfiguration>(section, new WalletConfiguration())
is IComponentHost host)
{
Wallets.Add(host);
wallets.Add(host);
host.Start();
}
}