Skip to content

Commit c65e6be

Browse files
Changes variable order for priv_getCode (#1163)
1 parent 7513540 commit c65e6be

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

besu/src/main/java/org/web3j/protocol/besu/Besu.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Request<?, PrivCreatePrivacyGroup> privCreatePrivacyGroup(
7272
Request<?, PrivGetTransactionReceipt> privGetTransactionReceipt(final String transactionHash);
7373

7474
Request<?, EthGetCode> privGetCode(
75-
String address, DefaultBlockParameter defaultBlockParameter, String privacyGroupId);
75+
String privacyGroupId, String address, DefaultBlockParameter defaultBlockParameter);
7676

7777
Request<?, org.web3j.protocol.core.methods.response.EthCall> privCall(
7878
org.web3j.protocol.core.methods.request.Transaction transaction,

besu/src/main/java/org/web3j/protocol/besu/JsonRpc2_0Besu.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,12 @@ public Request<?, PrivGetTransactionReceipt> privGetTransactionReceipt(
185185

186186
@Override
187187
public Request<?, EthGetCode> privGetCode(
188+
final String privacyGroupId,
188189
final String address,
189-
final DefaultBlockParameter defaultBlockParameter,
190-
final String privacyGroupId) {
190+
final DefaultBlockParameter defaultBlockParameter) {
191191
ArrayList<String> result =
192-
new ArrayList<>(Arrays.asList(address, defaultBlockParameter.getValue()));
193-
if (privacyGroupId != null) result.add(privacyGroupId);
192+
new ArrayList<>(
193+
Arrays.asList(privacyGroupId, address, defaultBlockParameter.getValue()));
194194
return new Request<>("priv_getCode", result, web3jService, EthGetCode.class);
195195
}
196196

besu/src/main/java/org/web3j/tx/PrivateTransactionManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public EthGetCode getCode(
211211
throws IOException {
212212
return this.besu
213213
.privGetCode(
214-
contractAddress, defaultBlockParameter, this.getPrivacyGroupId().toString())
214+
this.getPrivacyGroupId().toString(), contractAddress, defaultBlockParameter)
215215
.send();
216216
}
217217
}

besu/src/test/java/org/web3j/protocol/besu/RequestTest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -203,14 +203,14 @@ public void testPrivGetTransactionReceipt() throws Exception {
203203
@Test
204204
public void testPrivGetCode() throws Exception {
205205
web3j.privGetCode(
206+
MOCK_PRIVACY_GROUP_ID.toString(),
206207
"A1aVtMxLCUHmBVHXoZzzBgPbW/wj5axDpW9X8l91SGo=",
207-
DefaultBlockParameterName.LATEST,
208-
MOCK_PRIVACY_GROUP_ID.toString())
208+
DefaultBlockParameterName.LATEST)
209209
.send();
210210

211211
verifyResult(
212212
"{\"jsonrpc\":\"2.0\",\"method\":\"priv_getCode\","
213-
+ "\"params\":[\"A1aVtMxLCUHmBVHXoZzzBgPbW/wj5axDpW9X8l91SGo=\",\"latest\",\"DyAOiF/ynpc+JXa2YAGB0bCitSlOMNm+ShmB/7M6C4w=\"],\"id\":1}");
213+
+ "\"params\":[\"DyAOiF/ynpc+JXa2YAGB0bCitSlOMNm+ShmB/7M6C4w=\",\"A1aVtMxLCUHmBVHXoZzzBgPbW/wj5axDpW9X8l91SGo=\",\"latest\"],\"id\":1}");
214214
}
215215

216216
@Test

0 commit comments

Comments
 (0)