(&mut self)
| 768 | // on `tokio::runtime::Handle::try_current()` before being able to run the `get_tx()` check. |
| 769 | |
| 770 | pub fn commit_mutable_tx(&mut self) -> Result<(), NodesError> { |
| 771 | let tx = self.take_mutable_tx_for_commit()?; |
| 772 | self.commit_procedure_tx(tx) |
| 773 | } |
| 774 | |
| 775 | /// Extract an anonymous mutable tx so callers can perform extra work before commit. |
| 776 | pub fn take_mutable_tx_for_commit(&mut self) -> Result<MutTxId, NodesError> { |
nothing calls this directly
no test coverage detected