From fd8cb44e675b08e033dc5f9b4e1ee67e3bbd5cd1 Mon Sep 17 00:00:00 2001 From: Aayush Date: Thu, 24 Feb 2022 10:27:37 -0500 Subject: [PATCH] fix: client: calculate commps for pieces bigger than 32GB --- node/impl/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/impl/client/client.go b/node/impl/client/client.go index 7848c84f9..1730b7a7a 100644 --- a/node/impl/client/client.go +++ b/node/impl/client/client.go @@ -1272,7 +1272,7 @@ func (a *API) ClientCalcCommP(ctx context.Context, inpath string) (*api.CommPRet // // IF/WHEN this changes in the future we will have to be able to calculate // "old style" commP, and thus will need to introduce a version switch or similar - arbitraryProofType := abi.RegisteredSealProof_StackedDrg32GiBV1_1 + arbitraryProofType := abi.RegisteredSealProof_StackedDrg64GiBV1_1 rdr, err := os.Open(inpath) if err != nil {