Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: remove log parsing errors (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan authored Aug 29, 2023
1 parent 29131e3 commit a66bfcb
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/frontend/src/components/steps/Step2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,7 @@ const Step2 = ({ onFinish }: StepProps) => {
tokenSentLogIndex = log.logIndex
break
}
} catch (error) {
setErrors((e) => [
...e,
`Error when parsing receipt logs to find TokenSent event!`,
])
}
} catch {}
}

if (tokenSentLogIndex == undefined) {
Expand Down

0 comments on commit a66bfcb

Please sign in to comment.