State of transaction not confirmed or conflicting with a known block and not in the mempool. May conflict with the mempool, or with an unknown block, or be abandoned, never broadcast, or rejected from the mempool for another reason.
| 46 | //! or be abandoned, never broadcast, or rejected from the mempool for another |
| 47 | //! reason. |
| 48 | struct TxStateInactive { |
| 49 | bool abandoned; |
| 50 | |
| 51 | explicit TxStateInactive(bool abandoned = false) : abandoned(abandoned) {} |
| 52 | }; |
| 53 | |
| 54 | //! State of transaction loaded in an unrecognized state with unexpected hash or |
| 55 | //! index values. Treated as inactive (with serialized hash and index values |
no outgoing calls
no test coverage detected