Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Update web3j to latest version for fix to handle large chainids in eip155 transactions #382

Merged
merged 3 commits into from
Aug 5, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ default byte[] rlpEncode(final long chainId) {

JsonRpcRequest jsonRpcRequest(String signedTransactionHexString, JsonRpcRequestId id);

// NOTE: This was taken from Web3j TransactionEncode as the function is private
// NOTE: This was taken from Web3j TransactionEncoder as the function is private
static byte[] longToBytes(final long x) {
final ByteBuffer buffer = ByteBuffer.allocate(Long.BYTES);
buffer.putLong(x);
Expand Down
8 changes: 5 additions & 3 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,11 @@ dependencyManagement {
dependency 'org.mockito:mockito-inline:3.2.4'
dependency 'org.mockito:mockito-junit-jupiter:3.2.4'

dependency 'org.web3j:besu:4.5.14'
dependency 'org.web3j:core:4.5.14'
dependency 'org.web3j:crypto:4.5.14'
dependencySet(group: 'org.web3j', version: '4.8.7') {
entry 'besu'
entry 'core'
entry 'crypto'
}

dependencySet(group: 'tech.pegasys.signers.internal', version: '1.0.17') {
entry 'keystorage-hashicorp'
Expand Down