pub enum WalletTxStatusCode {
UNCONFIRMED,
CONFIRMED,
CONFLICTED,
ABANDONED,
}
Expand description
| New transactions start as UNCONFIRMED. | | At BlockConnected, they will transition | to CONFIRMED. | | In case of reorg, at BlockDisconnected, | they roll back to UNCONFIRMED. | | If we detect a conflicting transaction | at block connection, we update conflicted | tx and its dependencies as CONFLICTED. | | If tx isn’t confirmed and outside of | mempool, the user may switch it to ABANDONED | by using the abandontransaction call. | | This last status may be override by a | CONFLICTED or CONFIRMED transition. |
Variants§
Auto Trait Implementations§
impl RefUnwindSafe for WalletTxStatusCode
impl Send for WalletTxStatusCode
impl Sync for WalletTxStatusCode
impl Unpin for WalletTxStatusCode
impl UnwindSafe for WalletTxStatusCode
Blanket Implementations§
§impl<T, U> CastInto<U> for Twhere
U: CastFrom<T>,
impl<T, U> CastInto<U> for Twhere U: CastFrom<T>,
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> StaticUpcast<T> for T
impl<T> StaticUpcast<T> for T
§unsafe fn static_upcast(ptr: Ptr<T>) -> Ptr<T>
unsafe fn static_upcast(ptr: Ptr<T>) -> Ptr<T>
Convert type of a const pointer. Read more