Skip to content

Commit 44e1e26

Browse files
committed
Fixed typo in EthCall example, as per #6.
1 parent 21da0d2 commit 44e1e26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/source/transactions.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ contract method's called, it simply returns the value from them::
427427
.sendAsync().get();
428428

429429
List<Type> someTypes = FunctionReturnDecoder.decode(
430-
responseValue, function.getOutputParameters());
430+
response.getValue(), function.getOutputParameters());
431431

432432
**Note:** If an invalid function call is made, or a null result is obtained, the return value will
433433
be an instance of `Collections.emptyList() <https://docs.oracle.com/javase/8/docs/api/java/util/Collections.html#emptyList-->`_

0 commit comments

Comments
 (0)