diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-12 14:14:51 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-12 14:14:51 +0000 |
| commit | 09e060febbe49a3c72954e46cdaebb3b14ee68db (patch) | |
| tree | 361fae8b8fae63622b433f91dfce54008ba04588 | |
| parent | e66866c1fc06fd8a546c2c7869f899844078e44a (diff) | |
| download | monzero-core-09e060febbe49a3c72954e46cdaebb3b14ee68db.tar.gz monzero-core-09e060febbe49a3c72954e46cdaebb3b14ee68db.tar.xz monzero-core-09e060febbe49a3c72954e46cdaebb3b14ee68db.zip | |
protocol: fix fluffy to normal block dropping txes
| -rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler.inl | 2 |
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 ) |
