mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
refactor: PutTryParsePermissionFlags in anonymous namespace
It's only used inside `net_permissions.cpp`.
This commit is contained in:
parent
77b79fa6ef
commit
425e7cb8cf
1 changed files with 4 additions and 0 deletions
|
|
@ -16,6 +16,8 @@ const std::vector<std::string> NET_PERMISSIONS_DOC{
|
|||
"mempool (allow requesting BIP35 mempool contents)",
|
||||
};
|
||||
|
||||
namespace {
|
||||
|
||||
// The parse the following format "perm1,perm2@xxxxxx"
|
||||
bool TryParsePermissionFlags(const std::string str, NetPermissionFlags& output, size_t& readen, bilingual_str& error)
|
||||
{
|
||||
|
|
@ -60,6 +62,8 @@ bool TryParsePermissionFlags(const std::string str, NetPermissionFlags& output,
|
|||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
std::vector<std::string> NetPermissions::ToStrings(NetPermissionFlags flags)
|
||||
{
|
||||
std::vector<std::string> strings;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue