Exemple #1
0
 public Task PutAsync(uint256 blockId, Block block)
 {
     return(_Repository.PutAsync(blockId.ToString(), block));
 }
Exemple #2
0
 public Task <Block> GetBlockAsync(uint256 blockId)
 {
     return(_Repository.GetAsync <Block>(blockId.ToString()));
 }