Skip to content

Commit

Permalink
Modify non-revocation interval as workaround
Browse files Browse the repository at this point in the history
Signed-off-by: Emiliano Suñé <[email protected]>
  • Loading branch information
esune committed Oct 13, 2023
1 parent e0d819a commit 2cb9c77
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ public static string GeneratePresentationRequest(this PresentationRequestConfigu
Name = configuration.Name,
NonRevoked = new RevocationInterval()
{
From = new DateTimeOffset(DateTime.Now, TimeSpan.Zero).ToUnixTimeSeconds(),
// From = new DateTimeOffset(DateTime.Now, TimeSpan.Zero).ToUnixTimeSeconds(),
From = 0,
To = new DateTimeOffset(DateTime.Now, TimeSpan.Zero).ToUnixTimeSeconds()
}
};
Expand Down

0 comments on commit 2cb9c77

Please sign in to comment.