We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55b4e34 commit 71783dfCopy full SHA for 71783df
packages/bridge-status-controller/src/strategy/non-evm-strategy.ts
@@ -58,10 +58,14 @@ export async function* submitNonEvmHandler(
58
args: SubmitStrategyParams,
59
): AsyncGenerator<SubmitStepResult, void, void> {
60
const { quoteResponse, isBridgeTx } = args;
61
+ // There is an existing bug in which the Failed event is not published for any other submission flows
62
+ // Until the transaction has been added to the TransactionController state
63
+ // TODO remove this once the bug is fixed
64
yield {
65
type: 'publishFailedEvent',
66
payload: true,
67
};
68
+
69
if (
70
!(
71
isTronTrade(quoteResponse.trade) ||
0 commit comments