| 740 | |
| 741 | template<typename... Args> |
| 742 | static DataStream PrefixStream(const Args&... args) |
| 743 | { |
| 744 | DataStream prefix; |
| 745 | SerializeMany(prefix, args...); |
| 746 | return prefix; |
| 747 | } |
| 748 | |
| 749 | static DBErrors LoadDescriptorWalletRecords(CWallet* pwallet, DatabaseBatch& batch, int last_client) EXCLUSIVE_LOCKS_REQUIRED(pwallet->cs_wallet) |
| 750 | { |
no test coverage detected