| 1472 | instance_of_cnetcleanup; |
| 1473 | |
| 1474 | void RelayTransaction(CBaseTx* pBaseTx, const uint256& hash) { |
| 1475 | CDataStream ss(SER_NETWORK, PROTOCOL_VERSION); |
| 1476 | ss.reserve(1000); |
| 1477 | auto pTx = pBaseTx->GetNewInstance(); |
| 1478 | ss << pTx; |
| 1479 | RelayTransaction(pBaseTx, hash, ss); |
| 1480 | } |
| 1481 | |
| 1482 | void RelayTransaction(CBaseTx* pBaseTx, const uint256& hash, const CDataStream& ss) { |
| 1483 | CInv inv(MSG_TX, hash); |
no test coverage detected