BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
walletutil.h
Go to the documentation of this file.
1 // Copyright (c) 2017-2018 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_WALLET_WALLETUTIL_H
6 #define BITCOIN_WALLET_WALLETUTIL_H
7 
8 #include <fs.h>
9 
10 #include <vector>
11 
13 fs::path GetWalletDir();
14 
16 std::vector<fs::path> ListWalletDir();
17 
18 #endif // BITCOIN_WALLET_WALLETUTIL_H
fs::path GetWalletDir()
Get the path of the wallet directory.
Definition: dummywallet.cpp:37
std::vector< fs::path > ListWalletDir()
Get wallets in wallet directory.
Definition: dummywallet.cpp:42