File tree 2 files changed +8
-12
lines changed
src/main/java/org/web3j/abi
2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 79
79
compile ('org.web3j:core:1.0.1')
80
80
81
81
82
-
83
82
Start a client
84
83
--------------
85
84
@@ -230,13 +229,8 @@ for an example.
230
229
Tested Clients
231
230
--------------
232
231
233
- Geth
234
-
235
- - 1.4.18-stable-ef9265d0
236
-
237
- Parity
238
-
239
- - Parity/v1.3.8-beta/x86_64-linux-gnu/rustc1.12.0
232
+ - Geth
233
+ - Parity
240
234
241
235
You can run the integration test class
242
236
`CoreIT <https://github.com/web3j/web3j/blob/master/src/integration-test/java/org/web3j/protocol/core/CoreIT.java >`_
Original file line number Diff line number Diff line change @@ -116,12 +116,14 @@ protected <T extends Type> List<T> executeCallMultipleValueReturn(
116
116
*
117
117
* @param function to transact with
118
118
* @return {@link Optional} containing our transaction receipt
119
- * @throws InterruptedException
120
- * @throws ExecutionException
121
- * @throws TransactionTimeoutException
119
+ * @throws ExecutionException if the computation threw an
120
+ * exception
121
+ * @throws InterruptedException if the current thread was interrupted
122
+ * while waiting
123
+ * @throws TransactionTimeoutException if the transaction was not mined while waiting
122
124
*/
123
125
protected TransactionReceipt executeTransaction (
124
- Function function ) throws InterruptedException , ExecutionException ,
126
+ Function function ) throws ExecutionException , InterruptedException ,
125
127
TransactionTimeoutException {
126
128
BigInteger nonce = getNonce (credentials .getAddress ());
127
129
String encodedFunction = FunctionEncoder .encode (function );
You can’t perform that action at this time.
0 commit comments