| 870 | /** Prepends the wallet name in logging output to ease debugging in multi-wallet use cases */ |
| 871 | template<typename... Params> |
| 872 | void WalletLogPrintf(std::string fmt, Params... parameters) const { |
| 873 | LogPrintf(("%s " + fmt).c_str(), GetDisplayName(), parameters...); |
| 874 | }; |
| 875 | |
| 876 | /** Upgrade the wallet */ |
| 877 | bool UpgradeWallet(int version, bilingual_str& error); |
no outgoing calls
no test coverage detected