mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +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
565 B
Modula-2
18 lines
565 B
Modula-2
module github.com/hyperledger/fabric-samples/hardware-security-module/application-go
|
|
|
|
go 1.24.0
|
|
|
|
require (
|
|
github.com/hyperledger/fabric-gateway v1.10.0
|
|
google.golang.org/grpc v1.76.0
|
|
)
|
|
|
|
require (
|
|
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.7 // indirect
|
|
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/googleapis/rpc v0.0.0-20250804133106-a7a43d27e69b // indirect
|
|
google.golang.org/protobuf v1.36.10 // indirect
|
|
)
|