aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-12 14:14:51 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-03-12 14:14:51 +0000
commit09e060febbe49a3c72954e46cdaebb3b14ee68db (patch)
tree361fae8b8fae63622b433f91dfce54008ba04588
parentMerge pull request #1844 (diff)
downloadmonero-09e060febbe49a3c72954e46cdaebb3b14ee68db.tar.xz
protocol: fix fluffy to normal block dropping txes
-rw-r--r--src/cryptonote_protocol/cryptonote_protocol_handler.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler.inl b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
index f007a83a8..bb242c5f1 100644
--- a/src/cryptonote_protocol/cryptonote_protocol_handler.inl
+++ b/src/cryptonote_protocol/cryptonote_protocol_handler.inl
@@ -605,7 +605,7 @@ namespace cryptonote
NOTIFY_NEW_BLOCK::request reg_arg = AUTO_VAL_INIT(reg_arg);
reg_arg.hop = arg.hop;
reg_arg.current_blockchain_height = arg.current_blockchain_height;
- reg_arg.b.block = b.block;
+ reg_arg.b = b;
relay_block(reg_arg, context);
}
else if( bvc.m_marked_as_orphaned )