kubo/bitswap/bitswap.go
Juan Batiz-Benet 3b570d3f82 skeleton.
2014-06-26 01:14:26 -07:00

18 lines
250 B
Go

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