mirror of
https://github.com/monero-project/monero.git
synced 2025-05-06 14:34:57 -04:00
Merge pull request #6243
4771a7ae
p2p: remove obsolete local time in handshake (moneromooo-monero)2fbbc4a2
p2p: avoid sending the same peer list over and over (moneromooo-monero)3004835b
epee: remove backward compatible endian specific address serialization (moneromooo-monero)39a343d7
p2p: remove backward compatible peer list (moneromooo-monero)60631802
p2p: simplify last_seen serialization now we have optional stores (moneromooo-monero)9467b2e4
cryptonote_protocol: omit top 64 bits of difficulty when 0 (moneromooo-monero)b595583f
serialization: do not write optional fields with default value (moneromooo-monero)5f98b46d
p2p: remove obsolete local time from TIMED_SYNC (moneromooo-monero)
This commit is contained in:
commit
092a57df99
8 changed files with 38 additions and 87 deletions
|
@ -89,6 +89,8 @@ public: \
|
|||
|
||||
#define KV_SERIALIZE_OPT_N(variable, val_name, default_value) \
|
||||
do { \
|
||||
if (is_store && this_ref.variable == default_value) \
|
||||
break; \
|
||||
if (!epee::serialization::selector<is_store>::serialize(this_ref.variable, stg, hparent_section, val_name)) \
|
||||
epee::serialize_default(this_ref.variable, default_value); \
|
||||
} while (0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue