Commit this transaction. Closes the transaction as a success.
(self)
| 555 | self.declare() |
| 556 | |
| 557 | def commit(self) -> None: |
| 558 | """ |
| 559 | Commit this transaction. Closes the transaction as a success. |
| 560 | """ |
| 561 | self.discharge(False) |
| 562 | |
| 563 | def abort(self) -> None: |
| 564 | """ |
no test coverage detected