Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Commit

Permalink
Remove non-change
Browse files Browse the repository at this point in the history
  • Loading branch information
iikirilov committed Jul 13, 2019
1 parent 73517c2 commit c5a01bf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public String getName() {
public JsonRpcResponse response(final JsonRpcRequest request) {
LOG.trace("Executing {}", RpcMethod.EEA_DELETE_PRIVACY_GROUP.getMethodName());

final String from = parameters.required(request.getParams(), 0, String.class);
final String privacyGroupId = parameters.required(request.getParams(), 1, String.class);
final String from = parameters.required(request.getParams(), 0, String.class);

LOG.trace("Deleting a privacy group with privacyGroupId {} and from {}", privacyGroupId, from);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ public JsonRpcResponse response(final JsonRpcRequest request) {
final String privacyGroupId = parameters.required(request.getParams(), 1, String.class);

final long nonce = privateTransactionHandler.getSenderNonce(address, privacyGroupId);

return new JsonRpcSuccessResponse(request.getId(), Quantity.create(nonce));
}
}

0 comments on commit c5a01bf

Please sign in to comment.