mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Split boiler-plate connection code into a separate file since the basic sample already covers this aspect. The `app.go` file now only presents the main application code, making it much easier for readers to view. Also changed the event replay code to use a different style of reading from the real-time eventing example, demonstrating the use of timeouts while reading events we expect to arrive quickly, and avoiding any possibility of the main application execution hanging indefinitely. Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com>
13 lines
458 B
Modula-2
13 lines
458 B
Modula-2
module assetTransfer
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/hyperledger/fabric-gateway v1.0.0
|
|
github.com/hyperledger/fabric-protos-go v0.0.0-20220125190318-19041b215616 // indirect
|
|
github.com/miekg/pkcs11 v1.1.1 // indirect
|
|
golang.org/x/net v0.0.0-20220121210141-e204ce36a2ba // indirect
|
|
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
|
|
google.golang.org/genproto v0.0.0-20220118154757-00ab72f36ad5 // indirect
|
|
google.golang.org/grpc v1.44.0
|
|
)
|