Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion exonum-java-binding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed
- The default [`Transaction#info`][tx-info-07] implementation causing an error on `transaction`
request. It is modified to return an empty object (no info) by default. (#904)
request. It is modified to return an empty object by default (no info in `content.debug` field
of the response to `transaction`). (#904)

[tx-info-07]: https://exonum.com/doc/api/java-binding-core/0.7.0/com/exonum/binding/transaction/Transaction.html#info()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public interface Transaction {
* Returns the information about this transaction in JSON format.
* For example, it is included in the blockchain explorer response to
* a <a href="https://exonum.com/doc/version/0.11/advanced/node-management/#transaction">
* transaction</a> request.
* transaction</a> request as 'content.debug'.
*
* <p>By default, no information is provided. If needed, it can be easily implemented
* with {@linkplain com.exonum.binding.common.serialization.json.JsonSerializer Gson}:
Expand Down