Add currency name and percision to Config.h

This commit is contained in:
Arthur Britto
2012-05-19 18:17:00 -07:00
parent 82085f0264
commit 5142807109
2 changed files with 38 additions and 41 deletions

View File

@@ -7,6 +7,7 @@
#include <fstream>
#include <boost/lexical_cast.hpp>
// Fees are in XNS raw.
#define DEFAULT_FEE_CREATE 1000
#define DEFAULT_FEE_DEFAULT 100
@@ -121,15 +122,6 @@ void Config::load()
FEE_DEFAULT = boost::lexical_cast<int>(strTemp);
}
}
/*
node=root.child("DB_TYPE");
if(!node.empty())
{
if( stricmp(node.child_value(),"mysql")==0 ) theApp->setDB(Database::newMysqlDatabase("host","user","pass"));
else theApp->setSerializer(new DiskSerializer());
}else */
}
// vim:ts=4