This commit is contained in:
TheXamlGuy
2024-07-17 21:43:58 +01:00
parent eae11dc260
commit 9daebc7ba2
124 changed files with 233 additions and 247 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ public class WalletFactory(ISecurityKeyFactory securityKeyFactory,
IWalletFactory
{
public async Task<bool> Create(string name,
string password,
string password,
IImageDescriptor? imageDescriptor)
{
if (securityKeyFactory.Create(Encoding.UTF8.GetBytes(password)) is SecurityKey key)
@@ -36,4 +36,4 @@ public class WalletFactory(ISecurityKeyFactory securityKeyFactory,
return false;
}
}
}