(channelID string)
| 685 | } |
| 686 | |
| 687 | func (c *Cache) handleMetadataUpdatesForChannel(channelID string) { |
| 688 | ms, err := c.retrieveChaincodesMetadataSetWhileLocked(channelID) |
| 689 | if err != nil { |
| 690 | logger.Warningf("no metadata found on channel '%s': %s", channelID, err) |
| 691 | return |
| 692 | } |
| 693 | |
| 694 | c.MetadataHandler.UpdateMetadata(channelID, ms) |
| 695 | } |
no test coverage detected