Skip to content

Commit c8a241b

Browse files
committed
[FAB-7497] fix typos in previous commit
Change-Id: Ia02725c2eb5d4c99dbd7a5da2fc2dcfe6782cfca Signed-off-by: Alessandro Sorniotti <ale.linux@sopit.net>
1 parent 8a705b7 commit c8a241b

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

core/chaincode/handler.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1327,9 +1327,9 @@ func (handler *Handler) enterBusyState(e *fsm.Event, state string) {
13271327

13281328
version = cd.CCVersion()
13291329

1330-
err = ccprovider.CheckInsantiationPolicy(calledCcIns.ChaincodeName, version, cd.(*ccprovider.ChaincodeData))
1330+
err = ccprovider.CheckInstantiationPolicy(calledCcIns.ChaincodeName, version, cd.(*ccprovider.ChaincodeData))
13311331
if err != nil {
1332-
errHandler([]byte(err.Error()), "[%s]CheckInsantiationPolicy, error %s. Sending %s", shorttxid(msg.Txid), err, pb.ChaincodeMessage_ERROR)
1332+
errHandler([]byte(err.Error()), "[%s]CheckInstantiationPolicy, error %s. Sending %s", shorttxid(msg.Txid), err, pb.ChaincodeMessage_ERROR)
13331333
return
13341334
}
13351335
} else {

core/common/ccprovider/ccprovider.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ func GetChaincodeData(ccname string, ccversion string) (*ChaincodeData, error) {
213213
}
214214
}
215215

216-
func CheckInsantiationPolicy(name, version string, cdLedger *ChaincodeData) error {
216+
func CheckInstantiationPolicy(name, version string, cdLedger *ChaincodeData) error {
217217
ccdata, err := GetChaincodeData(name, version)
218218
if err != nil {
219219
return err

core/endorser/endorser.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ type Support interface {
8181
// that requires the java runtime environment to execute
8282
IsJavaCC(buf []byte) (bool, error)
8383

84-
// CheckInsantiationPolicy returns an error if the instantiation in the supplied
84+
// CheckInstantiationPolicy returns an error if the instantiation in the supplied
8585
// ChaincodeDefinition differs from the instantiation policy stored on the ledger
86-
CheckInsantiationPolicy(name, version string, cd resourcesconfig.ChaincodeDefinition) error
86+
CheckInstantiationPolicy(name, version string, cd resourcesconfig.ChaincodeDefinition) error
8787

8888
// GetApplicationConfig returns the configtxapplication.SharedConfig for the channel
8989
// and whether the Application config exists
@@ -240,7 +240,7 @@ func (e *Endorser) simulateProposal(ctx context.Context, chainID string, txid st
240240
}
241241
version = cdLedger.CCVersion()
242242

243-
err = e.s.CheckInsantiationPolicy(cid.Name, version, cdLedger)
243+
err = e.s.CheckInstantiationPolicy(cid.Name, version, cdLedger)
244244
if err != nil {
245245
return nil, nil, nil, nil, err
246246
}

core/endorser/endorser_test.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -127,13 +127,13 @@ func TestEndorserBadInstPolicy(t *testing.T) {
127127
es := NewEndorserServer(func(channel string, txID string, privateData *rwset.TxPvtReadWriteSet) error {
128128
return nil
129129
}, &em.MockSupport{
130-
GetApplicationConfigBoolRv: true,
131-
GetApplicationConfigRv: &mc.MockApplication{&mc.MockApplicationCapabilities{}},
132-
GetTransactionByIDErr: errors.New(""),
133-
CheckInsantiationPolicyError: errors.New(""),
134-
ChaincodeDefinitionRv: &resourceconfig.MockChaincodeDefinition{EndorsementStr: "ESCC"},
135-
ExecuteResp: &pb.Response{Status: 200, Payload: utils.MarshalOrPanic(&pb.ProposalResponse{Response: &pb.Response{}})},
136-
GetTxSimulatorRv: &ccprovider.MockTxSim{&ledger.TxSimulationResults{PubSimulationResults: &rwset.TxReadWriteSet{}}},
130+
GetApplicationConfigBoolRv: true,
131+
GetApplicationConfigRv: &mc.MockApplication{&mc.MockApplicationCapabilities{}},
132+
GetTransactionByIDErr: errors.New(""),
133+
CheckInstantiationPolicyError: errors.New(""),
134+
ChaincodeDefinitionRv: &resourceconfig.MockChaincodeDefinition{EndorsementStr: "ESCC"},
135+
ExecuteResp: &pb.Response{Status: 200, Payload: utils.MarshalOrPanic(&pb.ProposalResponse{Response: &pb.Response{}})},
136+
GetTxSimulatorRv: &ccprovider.MockTxSim{&ledger.TxSimulationResults{PubSimulationResults: &rwset.TxReadWriteSet{}}},
137137
})
138138

139139
signedProp := getSignedProp("ccid", "0", t)

core/endorser/support.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,10 @@ func (s *SupportImpl) IsJavaCC(buf []byte) (bool, error) {
123123
return (cds.ChaincodeSpec.Type == pb.ChaincodeSpec_JAVA), nil
124124
}
125125

126-
// CheckInsantiationPolicy returns an error if the instantiation in the supplied
126+
// CheckInstantiationPolicy returns an error if the instantiation in the supplied
127127
// ChaincodeDefinition differs from the instantiation policy stored on the ledger
128-
func (s *SupportImpl) CheckInsantiationPolicy(name, version string, cd resourcesconfig.ChaincodeDefinition) error {
129-
return ccprovider.CheckInsantiationPolicy(name, version, cd.(*ccprovider.ChaincodeData))
128+
func (s *SupportImpl) CheckInstantiationPolicy(name, version string, cd resourcesconfig.ChaincodeDefinition) error {
129+
return ccprovider.CheckInstantiationPolicy(name, version, cd.(*ccprovider.ChaincodeData))
130130
}
131131

132132
// GetApplicationConfig returns the configtxapplication.SharedConfig for the channel

core/mocks/endorser/support.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type MockSupport struct {
2929
ChaincodeDefinitionError error
3030
GetTxSimulatorRv *mc.MockTxSim
3131
GetTxSimulatorErr error
32-
CheckInsantiationPolicyError error
32+
CheckInstantiationPolicyError error
3333
GetTransactionByIDErr error
3434
CheckACLErr error
3535
SysCCMap map[string]struct{}
@@ -85,8 +85,8 @@ func (s *MockSupport) IsJavaCC(buf []byte) (bool, error) {
8585
return s.IsJavaRV, s.IsJavaErr
8686
}
8787

88-
func (s *MockSupport) CheckInsantiationPolicy(name, version string, cd resourcesconfig.ChaincodeDefinition) error {
89-
return s.CheckInsantiationPolicyError
88+
func (s *MockSupport) CheckInstantiationPolicy(name, version string, cd resourcesconfig.ChaincodeDefinition) error {
89+
return s.CheckInstantiationPolicyError
9090
}
9191

9292
func (s *MockSupport) GetApplicationConfig(cid string) (channelconfig.Application, bool) {

0 commit comments

Comments
 (0)