-
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.
upgraded abstore golang chaincode to use contract-api package (#154)
* upgraded abstore golang chaincode to use contract-api package Signed-off-by: Pritam Singh <pkspritam10@gmail.com> * resolved the issue Signed-off-by: Pritam Singh <pkspritam10@gmail.com>
- Loading branch information
Showing
3 changed files
with
130 additions
and
133 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,5 @@ | ||
module github.com/hyperledger/fabric-samples/chaincode/abstore/go | ||
|
||
go 1.12 | ||
go 1.13 | ||
|
||
require ( | ||
github.com/hyperledger/fabric-chaincode-go v0.0.0-20190823162523-04390e015b85 | ||
github.com/hyperledger/fabric-protos-go v0.0.0-20190821214336-621b908d5022 | ||
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 // indirect | ||
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 // indirect | ||
) | ||
require github.com/hyperledger/fabric-contract-api-go v1.0.0 |
Oops, something went wrong.