doc: clarify that NetPermissionFlags::Implicit is only about whitelists

Co-authored-by: Jon Atack <jon@atack.com>
This commit is contained in:
Vasil Dimov 2022-09-15 11:19:27 +02:00
parent 718304d222
commit f362920c2c
No known key found for this signature in database
GPG Key ID: 54DF06F64B55CBBF

View File

@ -35,7 +35,8 @@ enum class NetPermissionFlags : uint32_t {
// unlimited amounts of addrs.
Addr = (1U << 7),
// True if the user did not specifically set fine grained permissions
// True if the user did not specifically set fine-grained permissions with
// the -whitebind or -whitelist configuration options.
Implicit = (1U << 31),
All = BloomFilter | ForceRelay | Relay | NoBan | Mempool | Download | Addr,
};