diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-12-12 11:53:10 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-12-12 11:53:10 +0200 |
commit | dde1e697236030cdb433d340c3606e0787cd45d9 (patch) | |
tree | 55292835b27daf1fd7257ef7ba9201897980517c /src/cryptonote_protocol/cryptonote_protocol_defs.h | |
parent | Merge pull request #4879 (diff) | |
parent | protocol: option to pad transaction relay to the next kB (diff) | |
download | monero-dde1e697236030cdb433d340c3606e0787cd45d9.tar.xz |
Merge pull request #4787
3dba7f25 protocol: option to pad transaction relay to the next kB (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_protocol/cryptonote_protocol_defs.h')
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_defs.h b/src/cryptonote_protocol/cryptonote_protocol_defs.h index db159f0f4..d5bb50930 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_defs.h +++ b/src/cryptonote_protocol/cryptonote_protocol_defs.h @@ -146,9 +146,11 @@ namespace cryptonote struct request { std::vector<blobdata> txs; + std::string _; // padding BEGIN_KV_SERIALIZE_MAP() KV_SERIALIZE(txs) + KV_SERIALIZE(_) END_KV_SERIALIZE_MAP() }; }; |