Send inv. @param block the block
(Block block)
| 351 | * @param block the block |
| 352 | */ |
| 353 | public void sendInv(Block block) { |
| 354 | for (Node to : this.routingTable.getNeighbors()) { |
| 355 | AbstractMessageTask task = new InvMessageTask(this, to, block); |
| 356 | putTask(task); |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | /** |
| 361 | * Receive block. |
no test coverage detected