delTransaction deletes a transaction in the tx pool.
(t *tx.Transaction)
| 563 | |
| 564 | // delTransaction deletes a transaction in the tx pool. |
| 565 | func (s *TXPoolServer) delTransaction(t *tx.Transaction) { |
| 566 | s.txPool.DelTxList(t) |
| 567 | } |
| 568 | |
| 569 | // addTxList adds a valid transaction to the tx pool. |
| 570 | func (s *TXPoolServer) addTxList(txEntry *tc.TXEntry) bool { |