Exemplo n.º 1
0
 /// <summary>
 /// Get what is already in the chain
 /// </summary>
 /// <returns>A list of contents in the blockchain</returns>
 public IEnumerable <TContent> ViewChain()
 {
     return(store.GetAll().Select(obj => obj.Content));
 }