| 993 | |
| 994 | template <typename S, typename... T> |
| 995 | size_t GetSerializeSizeMany(const S& s, const T&... t) |
| 996 | { |
| 997 | CSizeComputer sc(s.GetType(), s.GetVersion()); |
| 998 | SerializeMany(sc, t...); |
| 999 | return sc.size(); |
| 1000 | } |
| 1001 | |
| 1002 | #endif // BITCOIN_SERIALIZE_H |
no test coverage detected