From 433e0053e3c986195244119983fb8b7b8fc9e6a7 Mon Sep 17 00:00:00 2001 From: Pratyaksh Gupta Date: Mon, 30 Aug 2021 17:57:36 +0530 Subject: [PATCH] updating import links for shim and peer package The shim and peer protobuf modules are no longer vendored automatically by Fabric, so they are needed to vendor individually. --- chaincode/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chaincode/main.go b/chaincode/main.go index cc93c45..0754d11 100644 --- a/chaincode/main.go +++ b/chaincode/main.go @@ -2,8 +2,8 @@ package main import ( "fmt" - "github.com/hyperledger/fabric/core/chaincode/shim" - pb "github.com/hyperledger/fabric/protos/peer" + "github.com/hyperledger/fabric-chaincode-go/shim" + sc "github.com/hyperledger/fabric-protos-go/peer" ) // HeroesServiceChaincode implementation of Chaincode