mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-23 04:25:51 +00:00
Alphabet class for base58 conversions, Validators work
This commit is contained in:
@@ -188,14 +188,19 @@ public:
|
||||
|
||||
void addStrings (String name, StringArray const& stringArray)
|
||||
{
|
||||
addStaticSource (SourceStrings::New (
|
||||
name, stringArray));
|
||||
if (stringArray.size() > 0)
|
||||
{
|
||||
addStaticSource (SourceStrings::New (name, stringArray));
|
||||
}
|
||||
else
|
||||
{
|
||||
m_journal.debug << "Static source '" << name << "' is empty.";
|
||||
}
|
||||
}
|
||||
|
||||
void addFile (File const& file)
|
||||
{
|
||||
//addStaticSource (SourceFile::New (file));
|
||||
addSource (SourceFile::New (file));
|
||||
addStaticSource (SourceFile::New (file));
|
||||
}
|
||||
|
||||
void addURL (URL const& url)
|
||||
|
||||
Reference in New Issue
Block a user