base.types.TransactionStatus - PolymeshAssociation/polymesh-sdk GitHub Wiki
Enumeration: TransactionStatus
base/types.TransactionStatus
Table of contents
Enumeration Members
Enumeration Members
Aborted
• Aborted = "Aborted"
the transaction couldn't be broadcast. It was either dropped, usurped or invalidated see https://github.com/paritytech/substrate/blob/master/primitives/transaction-pool/src/pool.rs#L58-L110
Defined in
Failed
• Failed = "Failed"
the transaction's execution failed due to a an on-chain validation error, insufficient balance for fees, or other such reasons
Defined in
Idle
• Idle = "Idle"
the transaction is prepped to run
Defined in
Rejected
• Rejected = "Rejected"
the transaction was rejected by the signer
Defined in
Running
• Running = "Running"
the transaction is being executed
Defined in
Succeeded
• Succeeded = "Succeeded"
the transaction was run successfully
Defined in
Unapproved
• Unapproved = "Unapproved"
the transaction is waiting for the user's signature