| 353 | } |
| 354 | |
| 355 | void PushBlockConfirmMessage(const CBlockConfirmMessage& msg) { |
| 356 | LOCK(cs_blockConfirm); |
| 357 | if(!setBlockConfirmMsgKnown.count(msg)){ |
| 358 | PushMessage(NetMsgType::CONFIRMBLOCK, msg); |
| 359 | setBlockConfirmMsgKnown.insert(msg); |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | void PushBlockFinalityMessage(const CBlockFinalityMessage& msg) { |
| 364 | LOCK(cs_blockFinality); |
no test coverage detected