You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Lotus v1.33.0 release introduces experimental v2 APIs with F3 awareness, featuring a new TipSet selection mechanism that significantly enhances how applications interact with the Filecoin blockchain. This release candidate also adds F3-aware Ethereum APIs via the /v2 endpoint. All of the /v2 APIs implement intelligent fallback mechanisms between F3 and Expected Consensus and are exposed through the Lotus Gateway.
// The unfortunate thing about this approach is that batches less than batchSize in different partitions cannot be aggregated together to send messages.
returnxerrors.Errorf("failed to find sector in active sector set: %w", err)
911
+
returnxerrors.Errorf("failed to find claim for claimId %d", claimId)
908
912
}
909
-
if!cctx.Bool("drop-claims") {
910
-
fmt.Printf("skipping sector %d because claim %d (client f0%s, piece %s) cannot be maintained in the extended sector (use --drop-claims to drop claims)\n", sectorNumber, claimId, claim.Client, claim.Data)
// FIP-0045 requires the claim minimum duration to have passed
915
-
fmt.Printf("skipping sector %d because claim %d (client f0%s, piece %s) has not reached its minimum duration\n", sectorNumber, claimId, claim.Client, claim.Data)
// FIP-0045 requires the sector to be in its last 30 days of life
920
-
fmt.Printf("skipping sector %d because claim %d (client f0%s, piece %s) is not in its last 30 days of life\n", sectorNumber, claimId, claim.Client, claim.Data)
returnxerrors.Errorf("failed to find sector in active sector set: %w", err)
921
+
}
922
+
if!cctx.Bool("drop-claims") {
923
+
fmt.Printf("skipping sector %d because claim %d (client f0%s, piece %s) cannot be maintained in the extended sector (use --drop-claims to drop claims)\n", sectorNumber, claimId, claim.Client, claim.Data)
// FIP-0045 requires the claim minimum duration to have passed
928
+
fmt.Printf("skipping sector %d because claim %d (client f0%s, piece %s) has not reached its minimum duration\n", sectorNumber, claimId, claim.Client, claim.Data)
// FIP-0045 requires the sector to be in its last 30 days of life
933
+
fmt.Printf("skipping sector %d because claim %d (client f0%s, piece %s) is not in its last 30 days of life\n", sectorNumber, claimId, claim.Client, claim.Data)
0 commit comments