-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
storage: Move mock PreCommit helper to the mock package
- Loading branch information
Showing
3 changed files
with
73 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,81 @@ | ||
package mock | ||
|
||
import ( | ||
"fmt" | ||
|
||
"golang.org/x/xerrors" | ||
|
||
"github.com/filecoin-project/go-address" | ||
"github.com/filecoin-project/go-commp-utils/zerocomm" | ||
commcid "github.com/filecoin-project/go-fil-commcid" | ||
"github.com/filecoin-project/go-state-types/abi" | ||
"github.com/filecoin-project/go-state-types/big" | ||
"github.com/filecoin-project/go-state-types/builtin/v8/market" | ||
|
||
"github.com/filecoin-project/lotus/chain/types" | ||
"github.com/filecoin-project/lotus/chain/wallet/key" | ||
"github.com/filecoin-project/lotus/genesis" | ||
) | ||
|
||
func CommDR(in []byte) (out [32]byte) { | ||
for i, b := range in { | ||
out[i] = ^b | ||
} | ||
|
||
return out | ||
} | ||
|
||
func PreSeal(spt abi.RegisteredSealProof, maddr address.Address, sectors int) (*genesis.Miner, *types.KeyInfo, error) { | ||
k, err := key.GenerateKey(types.KTBLS) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
ssize, err := spt.SectorSize() | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
genm := &genesis.Miner{ | ||
ID: maddr, | ||
Owner: k.Address, | ||
Worker: k.Address, | ||
MarketBalance: big.NewInt(0), | ||
PowerBalance: big.NewInt(0), | ||
SectorSize: ssize, | ||
Sectors: make([]*genesis.PreSeal, sectors), | ||
} | ||
|
||
for i := range genm.Sectors { | ||
label, err := market.NewLabelFromString(fmt.Sprintf("%d", i)) | ||
if err != nil { | ||
return nil, nil, xerrors.Errorf("failed to create label: %w", err) | ||
} | ||
|
||
preseal := &genesis.PreSeal{} | ||
|
||
preseal.ProofType = spt | ||
preseal.CommD = zerocomm.ZeroPieceCommitment(abi.PaddedPieceSize(ssize).Unpadded()) | ||
d, _ := commcid.CIDToPieceCommitmentV1(preseal.CommD) | ||
r := CommDR(d) | ||
preseal.CommR, _ = commcid.ReplicaCommitmentV1ToCID(r[:]) | ||
preseal.SectorID = abi.SectorNumber(i + 1) | ||
preseal.Deal = market.DealProposal{ | ||
PieceCID: preseal.CommD, | ||
PieceSize: abi.PaddedPieceSize(ssize), | ||
Client: k.Address, | ||
Provider: maddr, | ||
Label: label, | ||
StartEpoch: 1, | ||
EndEpoch: 10000, | ||
StoragePricePerEpoch: big.Zero(), | ||
ProviderCollateral: big.Zero(), | ||
ClientCollateral: big.Zero(), | ||
} | ||
preseal.DealClientKey = k | ||
|
||
genm.Sectors[i] = preseal | ||
} | ||
|
||
return genm, &k.KeyInfo, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.