Skip to content

Commit

Permalink
Changed visibility of buildEventSignature and executeTransaction.
Browse files Browse the repository at this point in the history
  • Loading branch information
conor10 committed Nov 24, 2017
1 parent 9ad07c2 commit d08e309
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion abi/src/main/java/org/web3j/abi/EventEncoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static <T extends Type> String buildMethodSignature(
return result.toString();
}

static String buildEventSignature(String methodSignature) {
public static String buildEventSignature(String methodSignature) {
byte[] input = methodSignature.getBytes();
byte[] hash = Hash.sha3(input);
return Numeric.toHexString(hash);
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/org/web3j/tx/TransactionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected TransactionManager(Web3j web3j, int attempts, long sleepDuration) {
web3j, sleepDuration, attempts);
}

TransactionReceipt executeTransaction(
protected TransactionReceipt executeTransaction(
BigInteger gasPrice, BigInteger gasLimit, String to,
String data, BigInteger value)
throws IOException, TransactionException {
Expand Down

0 comments on commit d08e309

Please sign in to comment.