kubo/bitswap/bitswap.go
2014-07-22 02:28:25 -07:00

18 lines
251 B
Go

package bitswap
import (
peer "github.com/jbenet/go-ipfs/peer"
)
// aliases
type Ledger struct {
// todo
}
type BitSwap struct {
Ledgers map[peer.ID]*Ledger
HaveList map[multihash.Multihash]*block.Block
WantList []*multihash.Multihash
}