mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
Fix tests
This commit is contained in:
@@ -48,7 +48,7 @@ namespace BTCPayServer.Models.ServerViewModels
|
||||
var unlockFileContents = File.ReadAllText(lndSeedFilePath);
|
||||
var unlockFile = JsonConvert.DeserializeObject<LndSeedFile>(unlockFileContents);
|
||||
|
||||
if (!String.IsNullOrEmpty(unlockFile.wallet_password))
|
||||
if (unlockFile.wallet_password != null)
|
||||
{
|
||||
return new LndSeedBackupViewModel
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user