setStatusClosed will change the tx status to txStatusClosed
()
| 636 | |
| 637 | // setStatusClosed will change the tx status to txStatusClosed |
| 638 | func (tx *Tx) setStatusClosed() { |
| 639 | status := txStatusClosed |
| 640 | tx.status.Store(status) |
| 641 | } |
| 642 | |
| 643 | // setStatusRunning will change the tx status to txStatusRunning |
| 644 | func (tx *Tx) setStatusRunning() { |
no outgoing calls
no test coverage detected