Skip to content

Commit

Permalink
Update core/types.go
Browse files Browse the repository at this point in the history
Co-authored-by: Samantha <[email protected]>
  • Loading branch information
jsha and beautifulentropy authored Apr 15, 2022
1 parent 57cdb2e commit b95209a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions core/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,8 @@ func (o *Order) GetStatus() (string, error) {
}
}

// An order is invalid if **any** of its authzs are invalid,
// deactivated, or expired
// https://tools.ietf.org/html/rfc8555#page-32
// An order is invalid if ANY of its authzs are invalid, deactivated, or
// expired per: https://tools.ietf.org/html/rfc8555#page-32
if authzStatuses[acme.StatusInvalid] > 0 ||
authzStatuses[acme.StatusDeactivated] > 0 ||
authzStatuses[acme.StatusExpired] > 0 {
Expand Down

0 comments on commit b95209a

Please sign in to comment.