Skip to content

Commit

Permalink
Updated visibility of abstract methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
conor10 committed Mar 7, 2017
1 parent fdb3a16 commit d121c17
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/org/web3j/tx/TransactionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,12 @@ TransactionReceipt executeTransaction(
return processResponse(ethSendTransaction);
}

abstract EthSendTransaction sendTransaction(
public abstract EthSendTransaction sendTransaction(
BigInteger gasPrice, BigInteger gasLimit, String to,
String data, BigInteger value)
throws ExecutionException, InterruptedException, TransactionTimeoutException;


abstract String getFromAddress();
public abstract String getFromAddress();

private TransactionReceipt processResponse(EthSendTransaction transactionResponse)
throws InterruptedException, ExecutionException, TransactionTimeoutException {
Expand Down

0 comments on commit d121c17

Please sign in to comment.