| 123 | bool _cached = false; |
| 124 | #ifndef NDEBUG |
| 125 | inline std::string debugString() const { |
| 126 | std::string dump; |
| 127 | dump = "PacketEntry: destination_hash=" + _destination_hash.toHex() + |
| 128 | " sent_at=" + std::to_string(_sent_at); |
| 129 | return dump; |
| 130 | } |
| 131 | #endif |
| 132 | }; |
| 133 | using PacketTable = std::map<Bytes, PacketEntry>; |