Skip to content

Commit

Permalink
Interpretation stub for failed txs (#2484)
Browse files Browse the repository at this point in the history
  • Loading branch information
isstuev authored Dec 23, 2024
1 parent f39c931 commit 30c377e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/tx/TxSubHeading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const TxSubHeading = ({ hash, hasTag, txQuery }: Props) => {
return (
<TxInterpretation
summary={{
summary_template: `{sender_hash} called {method} on {receiver_hash}`,
summary_template: `{sender_hash} ${ txQuery.data.status === 'error' ? 'failed to call' : 'called' } {method} on {receiver_hash}`,
summary_template_variables: {
sender_hash: {
type: 'address',
Expand Down

0 comments on commit 30c377e

Please sign in to comment.