-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FAB-16310] Vendor Go dependencies in all samples
All samples that deploy Go chaincode must now vendor their dependencies before deployment, due to changes in FAB-5177 which stop the shim being available at deployment time. This CR adds the command: "GO111MODULE=on go mod vendor" ... to all scripts/readmes as appropriate. Signed-off-by: Simon Stone <sstone1@uk.ibm.com> Change-Id: If0a2cc3a20dc943917d8325a8905427a79eb2400
- Loading branch information
Simon Stone
committed
Aug 15, 2019
1 parent
0063abe
commit ce154e0
Showing
7 changed files
with
219 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module github.com/hyperledger/fabric-samples/interest_rate_swaps/chaincode | ||
|
||
go 1.12 | ||
|
||
require ( | ||
github.com/Knetic/govaluate v3.0.0+incompatible // indirect | ||
github.com/Shopify/sarama v1.22.1 // indirect | ||
github.com/hashicorp/go-version v1.2.0 // indirect | ||
github.com/hyperledger/fabric v2.0.0-alpha.0.20190624224950-f2b8fef8859c+incompatible | ||
github.com/hyperledger/fabric-amcl v0.0.0-20181230093703-5ccba6eab8d6 // indirect | ||
github.com/miekg/pkcs11 v1.0.2 // indirect | ||
github.com/onsi/ginkgo v1.8.0 // indirect | ||
github.com/onsi/gomega v1.5.0 // indirect | ||
github.com/spf13/viper v1.4.0 // indirect | ||
github.com/sykesm/zap-logfmt v0.0.2 // indirect | ||
golang.org/x/crypto v0.0.0-20190621222207-cc06ce4a13d4 // indirect | ||
google.golang.org/grpc v1.21.1 // indirect | ||
) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
channel-artifacts/ | ||
crypto-config/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters