From 1a785bc0afe2098768a01382e61a83e16032a44c Mon Sep 17 00:00:00 2001 From: Pratyaksh Gupta Date: Mon, 30 Aug 2021 17:46:31 +0530 Subject: [PATCH 1/2] updating import links for shim package The shim modules are no longer vendored automatically by Fabric, so they are needed to vendor individually. --- start/chaincode_start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start/chaincode_start.go b/start/chaincode_start.go index c44519f29..9abe03ee5 100644 --- a/start/chaincode_start.go +++ b/start/chaincode_start.go @@ -20,7 +20,7 @@ import ( "errors" "fmt" - "github.com/hyperledger/fabric/core/chaincode/shim" + "github.com/hyperledger/fabric-chaincode-go/shim" ) // SimpleChaincode example simple Chaincode implementation From 009025a50789a42c95606b60cfb0243fd3eae0a1 Mon Sep 17 00:00:00 2001 From: Pratyaksh Gupta Date: Mon, 30 Aug 2021 17:53:28 +0530 Subject: [PATCH 2/2] updating import links for shim package The shimmodules are no longer vendored automatically by Fabric, so they are needed to vendor individually. --- finished/chaincode_finished.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/finished/chaincode_finished.go b/finished/chaincode_finished.go index e9615d43a..d2f771204 100644 --- a/finished/chaincode_finished.go +++ b/finished/chaincode_finished.go @@ -20,7 +20,7 @@ import ( "errors" "fmt" - "github.com/hyperledger/fabric/core/chaincode/shim" + "github.com/hyperledger/fabric-chaincode-go/shim" ) // SimpleChaincode example simple Chaincode implementation