Skip to content

Commit

Permalink
Rename DecodedLogEvent to LogEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaw3d committed Jul 5, 2023
1 parent 8a5092c commit 6e0f4df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/Transactions/LogEvent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const EvmLogRow: FC<{
)
}

const DecodedLogEvent: FC<{
const LogEvent: FC<{
scope: SearchScope
event: RuntimeEvent
addressSwitchOption: AddressSwitchOption
Expand Down Expand Up @@ -243,7 +243,7 @@ export const TransactionLogEvent: FC<{
return (
<>
{!isFirst && <Divider variant="card" />}
<DecodedLogEvent scope={scope} event={event} addressSwitchOption={addressSwitchOption} />
<LogEvent scope={scope} event={event} addressSwitchOption={addressSwitchOption} />
</>
)
}

0 comments on commit 6e0f4df

Please sign in to comment.