Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Add removed property to Log type (#4877) #5576

Merged
merged 1 commit into from
Oct 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,7 @@ Released with 1.0.0-beta.37 code base.
### Fixed

- Fixed types for getPastEvents (#4955) (#5260)
- Fix Log type by adding missing `removed` property (#4877)

### Changed

Expand Down
1 change: 1 addition & 0 deletions packages/web3-core/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ export interface Log {
transactionHash: string;
blockHash: string;
blockNumber: number;
removed: boolean;
}

// had to move `web3-net` due to other modules in `1.x` not referencing
Expand Down