mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
- update Application section in README
- remove param name in app.go
- add error checks in processor/block.go
- move vars from model to transact logic
- move newAsset to transact
- use ID for well-known initialisms
- move randomelement, randomnint and differentelement to transact
- remove AssertDefined
- blockTxIdsJoinedByComma: use standard library to join elements
- return nil, instead of []byte{}
- remove go routine in listen.go
- move cache to parser
- inline processor in listen.go
- move store to main package
- move util to main package
- fixed failing cache issue
- fixed staticcheck issues
- removed cache function, implemented caching in the structs and methods
Signed-off-by: Stanislav Jakuschevskij <stas@two-giants.com>
20 lines
550 B
Modula-2
20 lines
550 B
Modula-2
module offchaindata
|
|
|
|
go 1.22.0
|
|
|
|
require (
|
|
github.com/google/uuid v1.6.0
|
|
github.com/hyperledger/fabric-gateway v1.7.0
|
|
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.4
|
|
google.golang.org/grpc v1.68.0-dev
|
|
google.golang.org/protobuf v1.35.2
|
|
)
|
|
|
|
require (
|
|
github.com/miekg/pkcs11 v1.1.1 // indirect
|
|
golang.org/x/crypto v0.29.0 // indirect
|
|
golang.org/x/net v0.31.0 // indirect
|
|
golang.org/x/sys v0.27.0 // indirect
|
|
golang.org/x/text v0.20.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20241118233622-e639e219e697 // indirect
|
|
)
|