Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Spotless

* bumped plugin version.
  • Loading branch information
AlexandrouR authored Feb 16, 2022
1 parent a5768a7 commit 23ecc2a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ plugins {
id 'io.codearte.nexus-staging' version '0.22.0'
id 'de.marcphilipp.nexus-publish' version '0.4.0'
id 'de.undercouch.download' version '4.1.1'
id 'org.ajoberstar.git-publish' version '3.0.0'
id 'org.ajoberstar.git-publish' version '3.0.1'
}



ext {
bouncycastleVersion = '1.68'
jacksonVersion = '2.10.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,18 +326,19 @@ public Request<?, ParityFullTraceResponse> traceCall(
}

public Request<?, ParityFullTraceResponse> traceCallMany(
Collection<Transaction> transactions, List<String> traces, DefaultBlockParameter blockParameter) {
Collection<Transaction> transactions,
List<String> traces,
DefaultBlockParameter blockParameter) {
List<Object> transactionPayload =
transactions
.stream()
.map(transaction -> Arrays.asList(transaction, traces))
.collect(Collectors.toList());
transactions.stream()
.map(transaction -> Arrays.asList(transaction, traces))
.collect(Collectors.toList());

return new Request<>(
"trace_callMany",
Arrays.asList(transactionPayload, blockParameter),
web3jService,
ParityFullTraceResponse.class);
"trace_callMany",
Arrays.asList(transactionPayload, blockParameter),
web3jService,
ParityFullTraceResponse.class);
}

@Override
Expand Down

0 comments on commit 23ecc2a

Please sign in to comment.