SendNodeDataRLP sends a batch of arbitrary internal data, corresponding to the hashes requested.
(data [][]byte)
| 272 | // SendNodeDataRLP sends a batch of arbitrary internal data, corresponding to the |
| 273 | // hashes requested. |
| 274 | func (p *peer) SendNodeData(data [][]byte) error { |
| 275 | return p2p.Send(p.rw, NodeDataMsg, data) |
| 276 | } |
| 277 | |
| 278 | // SendReceiptsRLP sends a batch of transaction receipts, corresponding to the |
| 279 | // ones requested from an already RLP encoded format. |