diff --git a/src/blockchain_utilities/blockchain_blackball.cpp b/src/blockchain_utilities/blockchain_blackball.cpp index cf2ebe3ca..337066d9a 100644 --- a/src/blockchain_utilities/blockchain_blackball.cpp +++ b/src/blockchain_utilities/blockchain_blackball.cpp @@ -132,7 +132,7 @@ static std::string get_default_db_path() boost::filesystem::path dir = tools::get_default_data_dir(); // remove .bitmonero, replace with .shared-ringdb dir = dir.remove_filename(); - dir /= ".shared-ringdb"; + dir /= ".wow-shared-ringdb"; return dir.string(); } diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 085f4f9df..c945a03cb 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -71,7 +71,7 @@ namespace { boost::filesystem::path dir = tools::get_default_data_dir(); // remove .bitmonero, replace with .shared-ringdb dir = dir.remove_filename(); - dir /= ".shared-ringdb"; + dir /= ".wow-shared-ringdb"; if (nettype == cryptonote::TESTNET) dir /= "testnet"; else if (nettype == cryptonote::STAGENET) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 08d126085..b11598125 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -258,7 +258,7 @@ struct options { const command_line::arg_descriptor testnet = {"testnet", tools::wallet2::tr("For testnet. Daemon must also be launched with --testnet flag"), false}; const command_line::arg_descriptor stagenet = {"stagenet", tools::wallet2::tr("For stagenet. Daemon must also be launched with --stagenet flag"), false}; const command_line::arg_descriptor shared_ringdb_dir = { - "shared-ringdb-dir", tools::wallet2::tr("Set shared ring database path"), + "wow-shared-ringdb-dir", tools::wallet2::tr("Set shared ring database path"), get_default_ringdb_path(), {{ &testnet, &stagenet }}, [](std::array testnet_stagenet, bool defaulted, std::string val)->std::string { diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 3fcefd16f..4bcc6a2c0 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1242,7 +1242,7 @@ private: } BEGIN_SERIALIZE_OBJECT() - MAGIC_FIELD("monero wallet cache") + MAGIC_FIELD("wownero wallet cache") VERSION_FIELD(1) FIELD(m_blockchain) FIELD(m_transfers)