TxFailed
Raised when broadcastTxSync returns an err result.
Definition
class TxFailed(Error):
"""Raised when broadcastTxSync returns an `err` result."""Notes
- Defined for callers and downstream tooling to raise. The SDK does NOT automatically raise it —
Exchange._send_actionreturns the BroadcastTxOutcome envelope unchanged. - Inspect the returned dict's
check_tx.code,result.err, and similar fields to detect chain-level rejection; raiseTxFailed(...)yourself if your application prefers exception flow.
See also
Error— base classbroadcast_tx_sync— the source- Concepts: Error handling