From 2a1308f27897cbe5aa2f02b56e71b4c489c72a1e Mon Sep 17 00:00:00 2001 From: Junaid <86780488+jdevcs@users.noreply.github.com> Date: Mon, 4 Jul 2022 15:40:44 +0200 Subject: [PATCH] Fix transactionRoot -> transactionsRoot in BlockHeader (#5083) (#5197) * Fix transactionRoot -> transactionsRoot in BlockHeader * Update CHANGELOG.md Co-authored-by: Nikos Iliakis Co-authored-by: Junaid <86780488+jdevcs@users.noreply.github.com> Co-authored-by: Oscar Baracos --- CHANGELOG.md | 8 +++++--- packages/web3-eth/types/index.d.ts | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2999f3fcddf..f1782ae48c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/packages/web3-eth/types/index.d.ts b/packages/web3-eth/types/index.d.ts index 94a5900661b..88953985734 100644 --- a/packages/web3-eth/types/index.d.ts +++ b/packages/web3-eth/types/index.d.ts @@ -410,7 +410,7 @@ export interface BlockHeader { nonce: string; sha3Uncles: string; logsBloom: string; - transactionRoot: string; + transactionsRoot: string; stateRoot: string; receiptsRoot: string; miner: string;