ipld-eth-server/vendor/github.com/ipfs/go-ipfs/pin/internal/pb/header.proto
2019-12-02 13:24:46 -06:00

15 lines
350 B
Protocol Buffer

syntax = "proto2";
package ipfs.pin;
option go_package = "pb";
message Set {
// 1 for now, library will refuse to handle entries with an unrecognized version.
optional uint32 version = 1;
// how many of the links are subtrees
optional uint32 fanout = 2;
// hash seed for subtree selection, a random number
optional fixed32 seed = 3;
}