make check
Create a new wallet first
./bitcoind
./bitcoin-cli createwallet "testwallet"
./bitcoin-cli -rpcwallet="testwallet" getwalletinfo
kill bitcoind
The `getwalletinfo` rpc should output something like this:
{
"walletname": "testwallet",
"walletversion": 200300,
"balance": 0.00000000,
"unconfirmed_balance": 0.00000000,
"immature_balance": 0.00000000,
"txcount": 0,
"keypoololdest": 1570729970,
"keypoolsize": 1000,
"keypoolsize_hd_internal": 1000,
"paytxfee": 0.00000000,
"hdmasterkeyid": "e0c38684642d0301c5db7f5e2a43ea3a84764fec"
}
Open bitcoin-qt and then load the new wallet
./bitcoin-qt
Help -> Debug -> Console
loadwallet "testwallet"
In the upper right corner, use the drop-down menu labeled `wallets` to select `testwallet`.
In the console input:
getwalletinfo
This should output the same as above
Close the console window.
In the upper right corner of the main menu, use the drop-down menu labeled `wallets` to select `testwallet`.
The window should now display the information for `testwallet`.