mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
The Fabric Gateway client API v1.10.0 provides simplified access to Go error details. This change updates sample client application to use this latest version of the client API, and updates Go client applications to reflect the error handling changes. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
18 lines
529 B
Modula-2
18 lines
529 B
Modula-2
module github.com/hyperledger/fabric-samples/high-throughput/application-go
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/hyperledger/fabric-gateway v1.10.0
|
|
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.7
|
|
google.golang.org/grpc v1.76.0
|
|
)
|
|
|
|
require (
|
|
github.com/miekg/pkcs11 v1.1.1 // indirect
|
|
golang.org/x/net v0.42.0 // indirect
|
|
golang.org/x/sys v0.35.0 // indirect
|
|
golang.org/x/text v0.28.0 // indirect
|
|
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
|
|
google.golang.org/protobuf v1.36.10 // indirect
|
|
)
|