func ChainFilters(endorser peer.EndorserServer, filters ...Filter) peer.EndorserServer
ChainFilters chains the given auth filters in the order provided. the last filter always forwards to the endorser
Filter defines an authentication filter that intercepts ProcessProposal methods
type Filter interface { peer.EndorserServer // Init initializes the Filter with the next EndorserServer Init(next peer.EndorserServer) }