(channelID string)
| 1468 | } |
| 1469 | |
| 1470 | func (h *Handler) getCollectionStore(channelID string) privdata.CollectionStore { |
| 1471 | return privdata.NewSimpleCollectionStore( |
| 1472 | h.LedgerGetter.GetLedger(channelID), |
| 1473 | h.DeployedCCInfoProvider, |
| 1474 | h.IDDeserializerFactory, |
| 1475 | ) |
| 1476 | } |
| 1477 | |
| 1478 | func (h *Handler) State() State { |
| 1479 | h.stateLock.RLock() |
no test coverage detected