public Task <Transaction> GetAsync(uint256 txId)
 {
     return(_Repository.GetAsync <Transaction>(GetId(txId)));
 }
예제 #2
0
 public Task <Block> GetBlockAsync(uint256 blockId)
 {
     return(_Repository.GetAsync <Block>(blockId.ToString()));
 }