diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-06-15 14:14:51 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-06-15 14:14:51 -0400 |
commit | c3538f435af8c408759d9d005e80b2f1690e0659 (patch) | |
tree | 562a54d5315761ad943b65492f42d12ca3972a67 /src/wallet/db.cpp | |
parent | 1c86ed41483471929840eec09b93d7de3a4aeacf (diff) |
walletdb: Make SpliWalletFilePath non-static
Diffstat (limited to 'src/wallet/db.cpp')
-rw-r--r-- | src/wallet/db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/db.cpp b/src/wallet/db.cpp index d90e8e6433..f694ffc71c 100644 --- a/src/wallet/db.cpp +++ b/src/wallet/db.cpp @@ -51,7 +51,7 @@ bool WalletDatabaseFileId::operator==(const WalletDatabaseFileId& rhs) const return memcmp(value, &rhs.value, sizeof(value)) == 0; } -static void SplitWalletPath(const fs::path& wallet_path, fs::path& env_directory, std::string& database_filename) +void SplitWalletPath(const fs::path& wallet_path, fs::path& env_directory, std::string& database_filename) { if (fs::is_regular_file(wallet_path)) { // Special case for backwards compatibility: if wallet path points to an |