File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
crypto/src/main/java/org/web3j/crypto/transaction/type Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ()));
You can’t perform that action at this time.
0 commit comments