Skip to content

Commit

Permalink
Fix transactionRoot -> transactionsRoot in BlockHeader (#5083) (#5197)
Browse files Browse the repository at this point in the history
* Fix transactionRoot -> transactionsRoot in BlockHeader

* Update CHANGELOG.md

Co-authored-by: Nikos Iliakis <nikoulai@users.noreply.github.com>
Co-authored-by: Junaid <86780488+jdevcs@users.noreply.github.com>
Co-authored-by: Oscar Baracos <oscar.baracos@gmail.com>
  • Loading branch information
3 people authored Jul 4, 2022
1 parent 9e0d9d1 commit 2a1308f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -572,9 +572,11 @@ Released with 1.0.0-beta.37 code base.
- Documentation details about `maxFeePerGas` and `maxPriorityFeePerGas` (#5121)

### Fixed
- Fix typos in web3-eth-accounts.rst & TESTING.md (#5047)
- Improve README.md & Fix typos (#4848)
- Add optional hex formatting parameter for getTransactionrReceipt (#5153)
- Fix typos in web3-eth-accounts.rst & TESTING.md (#5047)
- Improve README.md & Fix typos (#4848)
- Add optional hex formatting parameter for getTransactionrReceipt (#5153)
- Fix transactionRoot -> transactionsRoot in BlockHeader (#5083)


### Security
- Updated `got` lib version and fixed other libs using npm audit fix
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-eth/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ export interface BlockHeader {
nonce: string;
sha3Uncles: string;
logsBloom: string;
transactionRoot: string;
transactionsRoot: string;
stateRoot: string;
receiptsRoot: string;
miner: string;
Expand Down

0 comments on commit 2a1308f

Please sign in to comment.