File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ bool WalletDatabaseFileId::operator==(const WalletDatabaseFileId& rhs) const
51
51
return memcmp (value, &rhs.value , sizeof (value)) == 0 ;
52
52
}
53
53
54
- static void SplitWalletPath (const fs::path& wallet_path, fs::path& env_directory, std::string& database_filename)
54
+ void SplitWalletPath (const fs::path& wallet_path, fs::path& env_directory, std::string& database_filename)
55
55
{
56
56
if (fs::is_regular_file (wallet_path)) {
57
57
// Special case for backwards compatibility: if wallet path points to an
Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ bool IsWalletLoaded(const fs::path& wallet_path);
91
91
92
92
/* * Given a wallet directory path or legacy file path, return path to main data file in the wallet database. */
93
93
fs::path WalletDataFilePath (const fs::path& wallet_path);
94
+ void SplitWalletPath (const fs::path& wallet_path, fs::path& env_directory, std::string& database_filename);
94
95
95
96
/* * Get BerkeleyEnvironment and database filename given a wallet path. */
96
97
std::shared_ptr<BerkeleyEnvironment> GetWalletEnv (const fs::path& wallet_path, std::string& database_filename);
You can’t perform that action at this time.
0 commit comments