aboutsummaryrefslogtreecommitdiffstats
path: root/eth/peer.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-09-29 00:27:31 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-10-19 15:03:09 +0800
commitf186b390182da7af368e7a5a1e9eff8d690b7414 (patch)
treefeb1410fe848dae9eed22c585bc0ebaab713f5a1 /eth/peer.go
parentc33cc382b3561ca91871111933f81653bfd8532f (diff)
downloaddexon-f186b390182da7af368e7a5a1e9eff8d690b7414.tar
dexon-f186b390182da7af368e7a5a1e9eff8d690b7414.tar.gz
dexon-f186b390182da7af368e7a5a1e9eff8d690b7414.tar.bz2
dexon-f186b390182da7af368e7a5a1e9eff8d690b7414.tar.lz
dexon-f186b390182da7af368e7a5a1e9eff8d690b7414.tar.xz
dexon-f186b390182da7af368e7a5a1e9eff8d690b7414.tar.zst
dexon-f186b390182da7af368e7a5a1e9eff8d690b7414.zip
eth/downloader: add fast and light sync strategies
Diffstat (limited to 'eth/peer.go')
-rw-r--r--eth/peer.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/eth/peer.go b/eth/peer.go
index 603b49b88..e24be97f1 100644
--- a/eth/peer.go
+++ b/eth/peer.go
@@ -197,9 +197,9 @@ func (p *peer) SendNodeData(data [][]byte) error {
return p2p.Send(p.rw, NodeDataMsg, data)
}
-// SendReceipts sends a batch of transaction receipts, corresponding to the ones
-// requested.
-func (p *peer) SendReceipts(receipts []*types.Receipt) error {
+// SendReceiptsRLP sends a batch of transaction receipts, corresponding to the
+// ones requested from an already RLP encoded format.
+func (p *peer) SendReceiptsRLP(receipts []rlp.RawValue) error {
return p2p.Send(p.rw, ReceiptsMsg, receipts)
}