rpc: Assert named arguments are unique in RPCHelpMan
This commit is contained in:
parent
e2c473ff75
commit
e09a5875ca
2 changed files with 11 additions and 4 deletions
|
@ -242,6 +242,16 @@ struct Sections {
|
|||
}
|
||||
};
|
||||
|
||||
RPCHelpMan::RPCHelpMan(const std::string& name, const std::string& description, const std::vector<RPCArg>& args)
|
||||
: m_name{name}, m_description{description}, m_args{args}
|
||||
{
|
||||
std::set<std::string> named_args;
|
||||
for (const auto& arg : m_args) {
|
||||
// Should have unique named arguments
|
||||
assert(named_args.insert(arg.m_name).second);
|
||||
}
|
||||
}
|
||||
|
||||
std::string RPCHelpMan::ToString() const
|
||||
{
|
||||
std::string ret;
|
||||
|
|
|
@ -109,10 +109,7 @@ struct RPCArg {
|
|||
class RPCHelpMan
|
||||
{
|
||||
public:
|
||||
RPCHelpMan(const std::string& name, const std::string& description, const std::vector<RPCArg>& args)
|
||||
: m_name{name}, m_description{description}, m_args{args}
|
||||
{
|
||||
}
|
||||
RPCHelpMan(const std::string& name, const std::string& description, const std::vector<RPCArg>& args);
|
||||
|
||||
std::string ToString() const;
|
||||
|
||||
|
|
Loading…
Reference in a new issue