Skip to content

Commit

Permalink
Populate any missing log.removed with false (ethers-io#3959).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo authored and Woodpile37 committed Jan 14, 2024
1 parent 1602ac3 commit fd0d1dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src.ts/providers/format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const _formatLog = object({
blockNumber: getNumber,
data: formatData,
index: getNumber,
removed: formatBoolean,
removed: allowNull(formatBoolean, false),
topics: arrayOf(formatHash),
transactionHash: formatHash,
transactionIndex: getNumber,
Expand Down

0 comments on commit fd0d1dc

Please sign in to comment.