mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
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
18 lines
761 B
Modula-2
18 lines
761 B
Modula-2
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
|
|
)
|