| 64 | } |
| 65 | |
| 66 | std::string HelpRequiringPassphrase(CWallet * const pwallet) |
| 67 | { |
| 68 | return pwallet && pwallet->IsCrypted() |
| 69 | ? "\nRequires wallet passphrase to be set with walletpassphrase call." |
| 70 | : ""; |
| 71 | } |
| 72 | |
| 73 | bool EnsureWalletIsAvailable(CWallet * const pwallet, bool avoidException) |
| 74 | { |
no test coverage detected