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 a2e6f1a commit 3db0a62Copy full SHA for 3db0a62
src/executionFiles/bridges/bridge.execute.ts
@@ -201,12 +201,12 @@ export class BridgeExecutionManager {
201
txHash
202
)
203
} catch (e: any) {
204
- // until the source transaction is mined the API will return a 404
205
- if (e.code === LifiErrorCodes.notFound) {
206
- return resolve(undefined)
+ // until the source transaction is mined the API will return a 404, which is not really an error
+ if (e.code !== LifiErrorCodes.notFound) {
+ console.debug('Fetching status from backend failed', e)
207
}
208
209
- return reject(e)
+ return resolve(undefined)
210
211
212
switch (statusResponse.status) {
0 commit comments