Skip to content

Commit

Permalink
Test node URI added (#29)
Browse files Browse the repository at this point in the history
Co-authored-by: Valera <>
  • Loading branch information
ValeraFinebits committed Jun 7, 2024
1 parent 5bad590 commit fc3010c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/Tuvi.Core.Mail.Impl/DecMailBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static IMailBox Create(Account account, IDecStorage storage)
{
return new DecMailBox(account,
storage,
DecStorageBuilder.CreateAzureClient(new Uri("https://decsimulator.azurewebsites.net/api")),
DecStorageBuilder.CreateAzureClient(new Uri("https://testnet2.eppie.io/api")),
new PgpDecProtector(storage));
}
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/Tuvi.Core.Mail.Impl/HybridMailBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public HybridMailBox(Account account, ICredentialsProvider credentialsProvider,
: base(account, credentialsProvider)
{
DataStorage = dataStorage;
DecClient = DecStorageBuilder.CreateAzureClient(new Uri("https://decsimulator.azurewebsites.net/api"));
DecClient = DecStorageBuilder.CreateAzureClient(new Uri("https://testnet2.eppie.io/api"));
}

private static uint Hash2Id(string hash)
Expand Down

0 comments on commit fc3010c

Please sign in to comment.