mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
10 lines
184 B
Go
10 lines
184 B
Go
package torrent
|
|
|
|
import (
|
|
pp "github.com/anacrolix/torrent/peer_protocol"
|
|
)
|
|
|
|
func makeCancelMessage(r Request) pp.Message {
|
|
return pp.MakeCancelMessage(r.Index, r.Begin, r.Length)
|
|
}
|