hyperledger/fabric · error
Rule-all packages should be endorsed or none should be endor
Error message
Rule-all packages should be endorsed or none should be endorsed failed for (%d, %d)
What it means
ValidateCip compared endorsement counts between the base and other package and found them unequal (one endorsed, one not, or differing counts). This is the numeric restatement of the all-or-none endorsement rule for collated owner packages.
Source
Thrown at core/common/ccpackage/ccpackage.go:66
// ValidateCip validate the endorsed package against the base package
func ValidateCip(baseCip, otherCip *peer.SignedChaincodeDeploymentSpec) error {
if baseCip == nil || otherCip == nil {
panic("do not call with nil parameters")
}
if (baseCip.OwnerEndorsements == nil && otherCip.OwnerEndorsements != nil) || (baseCip.OwnerEndorsements != nil && otherCip.OwnerEndorsements == nil) {
return errors.New("endorsements should either be both nil or not nil")
}
bN := len(baseCip.OwnerEndorsements)
oN := len(otherCip.OwnerEndorsements)
if bN > 1 || oN > 1 {
return errors.New("expect utmost 1 endorsement from a owner")
}
if bN != oN {
return fmt.Errorf("Rule-all packages should be endorsed or none should be endorsed failed for (%d, %d)", bN, oN)
}
if !bytes.Equal(baseCip.ChaincodeDeploymentSpec, otherCip.ChaincodeDeploymentSpec) {
return fmt.Errorf("Rule-all deployment specs should match(%d, %d)", len(baseCip.ChaincodeDeploymentSpec), len(otherCip.ChaincodeDeploymentSpec))
}
if !bytes.Equal(baseCip.InstantiationPolicy, otherCip.InstantiationPolicy) {
return fmt.Errorf("Rule-all instantiation policies should match(%d, %d)", len(baseCip.InstantiationPolicy), len(otherCip.InstantiationPolicy))
}
return nil
}
func createSignedCCDepSpec(cdsbytes []byte, instpolicybytes []byte, endorsements []*peer.Endorsement) (*common.Envelope, error) {
if cdsbytes == nil {
return nil, errors.New("nil chaincode deployment spec")
}
View on GitHub (pinned to 2736b63f8f)
Solutions
- Make endorsement counts identical across all packages submitted for install
- Verify each owner used the same deploy spec and signing flow
Defensive patterns
Strategy: validation
When it happens
Trigger: Thrown at core/common/ccpackage/ccpackage.go:66 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of hyperledger/fabric@2736b63f8f (2026-09-04).
Data as JSON: /api/errors/249fb14c687e8f52.
Report an issue: GitHub.