lotus/genesis/types.go

16 lines
253 B
Go
Raw Normal View History

2019-11-25 04:45:13 +00:00
package genesis
import "github.com/filecoin-project/lotus/chain/address"
type PreSeal struct {
CommR [32]byte
CommD [32]byte
SectorID uint64
}
type GenesisMiner struct {
Sectors []PreSeal
Owner address.Address
Worker address.Address
}