Skip to content

Commit 0f4f9f7

Browse files
committed
session: change revoked at to tlv type 16
In this commit, we change the tlv type number for the RevokedAt field to 16 and reserve types 14 and 15 for future use.
1 parent 0653424 commit 0f4f9f7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

session/tlv.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ const (
2525
typeRemotePublicKey tlv.Type = 11
2626
typeMacaroonRecipe tlv.Type = 12
2727
typeCreatedAt tlv.Type = 13
28-
typeRevokedAt tlv.Type = 14
28+
typeReservedNum1 tlv.Type = 14
29+
typeReservedNum2 tlv.Type = 15
30+
typeRevokedAt tlv.Type = 16
2931

3032
// typeMacaroon is no longer used, but we leave it defined for backwards
3133
// compatibility.

0 commit comments

Comments
 (0)