#include <lmdb.h>
#include <boost/algorithm/string.hpp>
#include <boost/range/adaptor/transformed.hpp>
#include <boost/filesystem.hpp>
#include "common/util.h"
#include "misc_log_ex.h"
#include "misc_language.h"
#include "wallet_errors.h"
#include "ringdb.h"
Go to the source code of this file.
|
| namespace | tools |
| | Various Tools.
|
◆ ELECTRONEUM_DEFAULT_LOG_CATEGORY
| #define ELECTRONEUM_DEFAULT_LOG_CATEGORY "wallet.ringdb" |
◆ anonymous enum
| Enumerator |
|---|
| BLACKBALL_BLACKBALL | |
| BLACKBALL_UNBLACKBALL | |
| BLACKBALL_QUERY | |
| BLACKBALL_CLEAR | |
Definition at line 197 of file ringdb.cpp.
◆ get_rings_filename()
| std::string get_rings_filename |
( |
boost::filesystem::path | filename | ) |
|
Definition at line 91 of file ringdb.cpp.
92{
93 if (!boost::filesystem::is_directory(filename))
94 filename.remove_filename();
95 return filename.string();
96}