File tree Expand file tree Collapse file tree 3 files changed +2852
-3
lines changed
token/services/network/fabric/endorsement/fsc Expand file tree Collapse file tree 3 files changed +2852
-3
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ package fsc
99import (
1010 "context"
1111
12+ "github.com/hyperledger-labs/fabric-smart-client/platform/fabric/driver"
1213 "github.com/hyperledger-labs/fabric-smart-client/platform/view/view"
1314 "github.com/hyperledger-labs/fabric-token-sdk/token"
1415)
@@ -18,6 +19,11 @@ import (
1819//go:generate counterfeiter -o mock/ctx.go -fake-name Context . Context
1920type Context = view.Context
2021
22+ // FabricTransaction is an alias for driver.Transaction
23+ //
24+ //go:generate counterfeiter -o mock/fabric_transaction.go -fake-name FabricTransaction . FabricTransaction
25+ type FabricTransaction = driver.Transaction
26+
2127type IdentityProvider interface {
2228 Identity (string ) view.Identity
2329}
You can’t perform that action at this time.
0 commit comments