Beispiel #1
0
 public Task <Transaction> GetAsync(uint256 txId)
 {
     return(_Client.GetRawTransactionAsync(txId, false));
 }
Beispiel #2
0
 public Task PutAsync(uint256 txId, Transaction tx)
 {
     return(Task.FromResult(false));
 }
Beispiel #3
0
 public Task PutAsync(uint256 blockId, Block block)
 {
     return(_Repository.PutAsync(blockId.ToString(), block));
 }
Beispiel #4
0
 public Task <Block> GetBlockAsync(uint256 blockId)
 {
     return(_Repository.GetAsync <Block>(blockId.ToString()));
 }
		public TransactionNotFoundException(string message, uint256 txId, Exception inner)
			: base(message ?? "Transaction " + txId + " not found", inner)
		{
			TxId = txId;
		}
		public TransactionNotFoundException(string message, uint256 txId)
			: this(message, txId, null)
		{
		}
		public TransactionNotFoundException(uint256 txId)
			: this(null, txId, null)
		{

		}