(txParams *ccprovider.TransactionParams)
| 59 | // A ContextRegistry is responsible for managing transaction contexts. |
| 60 | type ContextRegistry interface { |
| 61 | Create(txParams *ccprovider.TransactionParams) (*TransactionContext, error) |
| 62 | Get(channelID, txID string) *TransactionContext |
| 63 | Delete(channelID, txID string) |
| 64 | Close() |
no outgoing calls