mirror of
https://github.com/monero-project/monero.git
synced 2025-08-14 08:45:44 -04:00
Remove unused txs member in NOTIFY_RESPONSE_GET_OBJECT
This commit is contained in:
parent
fd3ff74164
commit
f17dcde451
3 changed files with 9 additions and 18 deletions
|
@ -172,11 +172,8 @@ namespace cryptonote
|
|||
|
||||
struct request_t
|
||||
{
|
||||
std::vector<crypto::hash> txs;
|
||||
std::vector<crypto::hash> blocks;
|
||||
|
||||
std::vector<crypto::hash> blocks;
|
||||
BEGIN_KV_SERIALIZE_MAP()
|
||||
KV_SERIALIZE_CONTAINER_POD_AS_BLOB(txs)
|
||||
KV_SERIALIZE_CONTAINER_POD_AS_BLOB(blocks)
|
||||
END_KV_SERIALIZE_MAP()
|
||||
};
|
||||
|
@ -189,13 +186,11 @@ namespace cryptonote
|
|||
|
||||
struct request_t
|
||||
{
|
||||
std::vector<blobdata> txs;
|
||||
std::vector<block_complete_entry> blocks;
|
||||
std::vector<crypto::hash> missed_ids;
|
||||
uint64_t current_blockchain_height;
|
||||
|
||||
BEGIN_KV_SERIALIZE_MAP()
|
||||
KV_SERIALIZE(txs)
|
||||
KV_SERIALIZE(blocks)
|
||||
KV_SERIALIZE_CONTAINER_POD_AS_BLOB(missed_ids)
|
||||
KV_SERIALIZE(current_blockchain_height)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue