diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-02-03 21:08:03 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-02-03 21:08:03 +0000 |
commit | 7658ac0f45c4aba0d88935047b225bfbc0ba2548 (patch) | |
tree | c320543d814f0e53be95bf4d35caefbaefdb6941 /src/cryptonote_core | |
parent | berkeleydb: fix delete/free mismatch (diff) | |
download | monero-7658ac0f45c4aba0d88935047b225bfbc0ba2548.tar.xz |
blockchain: revert handle_get_objects adding block id on tx not found
This differs from the original CN code, and there seems to be
no reason to include the block itself, if it was found
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r-- | src/cryptonote_core/blockchain.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index f18173ae8..afc479a4b 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -1385,7 +1385,6 @@ bool Blockchain::handle_get_objects(NOTIFY_REQUEST_GET_OBJECTS::request& arg, NO << " transactions for block with hash: " << get_block_hash(bl) << std::endl ); - rsp.missed_ids.push_back(get_block_hash(bl)); // append missed transaction hashes to response missed_ids field, // as done below if any standalone transactions were requested |