public void Put(uint256 txId, Transaction tx)
 {
     _Configuration.CreateIndexer().Index(new TransactionEntry.Entity(txId, tx, null));
 }
 public Task PutAsync(uint256 txId, ColoredTransaction colored)
 {
     _Configuration.CreateIndexer().Index(new TransactionEntry.Entity(txId, colored));
     return(Task.FromResult(false));
 }
 public Task PutAsync(uint256 txId, Transaction tx)
 {
     _Configuration.CreateIndexer().Index(new TransactionEntry.Entity(txId, tx, null));
     return(Task.FromResult(false));
 }
Exemple #4
0
 public void Put(uint256 txId, ColoredTransaction colored)
 {
     _Configuration.CreateIndexer().Index(new TransactionEntry.Entity(txId, colored));
 }