Convert group credential redemption time to a `long`

This commit is contained in:
Jon Chambers 2022-07-28 10:03:35 -04:00 committed by Jon Chambers
parent 6b6f9b2405
commit c4c5397b44
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ import javax.annotation.Nullable;
public record GroupCredentials(List<GroupCredential> credentials, @Nullable UUID pni) {
public record GroupCredential(byte[] credential, int redemptionTime) {
public record GroupCredential(byte[] credential, long redemptionTime) {
}
}