Remove removes a transaction from the lookup.
(hash common.Hash)
| 1377 | |
| 1378 | // Remove removes a transaction from the lookup. |
| 1379 | func (t *txLookup) Remove(hash common.Hash) { |
| 1380 | t.lock.Lock() |
| 1381 | defer t.lock.Unlock() |
| 1382 | |
| 1383 | delete(t.all, hash) |
| 1384 | } |
no test coverage detected