diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-09-24 10:10:28 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-09-24 10:10:28 -0500 |
commit | 06bee964a8989c3dcafdf8e665f74762814b43a2 (patch) | |
tree | 23a74b3f5dc698afbf95f79a9817cabed728b0b4 /src/daemon | |
parent | Merge pull request #5877 (diff) | |
parent | Removed Berkeley DB and db switching logic (diff) | |
download | monero-06bee964a8989c3dcafdf8e665f74762814b43a2.tar.xz |
Merge pull request #5878
f9b3f6e Removed Berkeley DB and db switching logic (JesusRami)
Diffstat (limited to 'src/daemon')
-rw-r--r-- | src/daemon/main.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/daemon/main.cpp b/src/daemon/main.cpp index cb288071e..8fa983fe5 100644 --- a/src/daemon/main.cpp +++ b/src/daemon/main.cpp @@ -44,7 +44,6 @@ #include "rpc/core_rpc_server.h" #include "rpc/rpc_args.h" #include "daemon/command_line_args.h" -#include "blockchain_db/db_types.h" #include "version.h" #ifdef STACK_TRACE @@ -224,16 +223,6 @@ int main(int argc, char const * argv[]) return 1; } - std::string db_type = command_line::get_arg(vm, cryptonote::arg_db_type); - - // verify that blockchaindb type is valid - if(!cryptonote::blockchain_valid_db_type(db_type)) - { - std::cout << "Invalid database type (" << db_type << "), available types are: " << - cryptonote::blockchain_db_types(", ") << std::endl; - return 0; - } - // data_dir // default: e.g. ~/.bitmonero/ or ~/.bitmonero/testnet // if data-dir argument given: |