Skip to content

Commit d0171d5

Browse files
authored
Merge pull request #2205 from zouxyan/main
fix: transaction serialized with access list
2 parents cc07951 + f499f6e commit d0171d5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
88
### Bug Fixes
99

1010
* Fix failing integration tests [#2248](https://github.com/LFDT-web3j/web3j/pull/2248)
11+
* Fix 4844 transaction serialized with access list [#2205](https://github.com/LFDT-web3j/web3j/pull/2205)
1112

1213
### Features
1314

crypto/src/main/java/org/web3j/crypto/transaction/type/Transaction4844.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public List<RlpType> asRlpValues(Sign.SignatureData signatureData) {
139139
resultTx.add(RlpString.create(data));
140140

141141
// access list
142-
resultTx.add(new RlpList());
142+
resultTx.add(new RlpList(rlpAccessListRlp()));
143143

144144
// Blob Transaction: max_fee_per_blob_gas and versioned_hashes
145145
resultTx.add(RlpString.create(getMaxFeePerBlobGas()));

0 commit comments

Comments
 (0)