forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount_flags.go
25 lines (21 loc) · 889 Bytes
/
account_flags.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package xdr
// IsAuthRequired returns true if the account has the "AUTH_REQUIRED" option
// turned on.
func (accountFlags AccountFlags) IsAuthRequired() bool {
return (accountFlags & AccountFlagsAuthRequiredFlag) != 0
}
// IsAuthRevocable returns true if the account has the "AUTH_REVOCABLE" option
// turned on.
func (accountFlags AccountFlags) IsAuthRevocable() bool {
return (accountFlags & AccountFlagsAuthRevocableFlag) != 0
}
// IsAuthImmutable returns true if the account has the "AUTH_IMMUTABLE" option
// turned on.
func (accountFlags AccountFlags) IsAuthImmutable() bool {
return (accountFlags & AccountFlagsAuthImmutableFlag) != 0
}
// IsAuthClawbackEnabled returns true if the account has the "AUTH_CLAWBACK_ENABLED" option
// turned on.
func (accountFlags AccountFlags) IsAuthClawbackEnabled() bool {
return (accountFlags & AccountFlagsAuthClawbackEnabledFlag) != 0
}