| 555 | |
| 556 | template <typename Stream, typename Operation> |
| 557 | inline void SerializationOp(Stream& s, Operation ser_action) { |
| 558 | int nVersion = s.GetVersion(); |
| 559 | if (!(s.GetType() & SER_GETHASH)) |
| 560 | READWRITE(nVersion); |
| 561 | READWRITE(vchPrivKey); |
| 562 | READWRITE(nTimeCreated); |
| 563 | READWRITE(nTimeExpires); |
| 564 | READWRITE(LIMITED_STRING(strComment, 65536)); |
| 565 | } |
| 566 | }; |
| 567 | |
| 568 | /** |
nothing calls this directly
no test coverage detected