diff --git a/weaver/samples/fabric/satpsimpleasset/assetmgmt.go b/weaver/samples/fabric/satpsimpleasset/assetmgmt.go index 384c4c3c96..ac626b514b 100644 --- a/weaver/samples/fabric/satpsimpleasset/assetmgmt.go +++ b/weaver/samples/fabric/satpsimpleasset/assetmgmt.go @@ -51,10 +51,6 @@ func (s *SmartContract) LockAsset(ctx contractapi.TransactionContextInterface, a if err != nil { return "", err } - err = s.BondAssetSpecificChecks(ctx, assetAgreement.AssetType, assetAgreement.Id, lockInfoSerializedProto64) - if err != nil { - return "", logThenErrorf(err.Error()) - } contractId, err := s.amc.LockAsset(ctx, assetExchangeAgreementSerializedProto64, lockInfoSerializedProto64) if err != nil {