Skip to content

v1.2.2

Compare
Choose a tag to compare
@dolanbernard dolanbernard released this 22 Jul 01:22
· 42 commits to master since this release
593be6d

Added

  • Added a ProposeTxResult field to InvalidTransactionException. This field indicates why the
    Transaction was not accepted.
  • MobileCoinTransactionClient.submitTransaction now returns Consensus block count at submission time.

Changed

  • Updated bindings to version 1.2.2

Fixes

  • OwnedTxOuts returned through the public API are copied from internal OwnedTxOuts. This fixes
    some issues caused by OwnedTxOuts being updated after being fetched from the public API.
  • Fixed default HttpRequester authentication
  • Fixed a dependency issue introduced by some project structure changes

Upgrading

No code changes are required to upgrade from 1.2.1 to 1.2.2

  • To easily handle various types of transaction failure differently, code such as the following
    can be used: switch(invalidTransactionException.getResult())
  • To obtain the Consensus block index at the time of Transaction submission, check the return
    value of MobileCoinTransactionClient.submitTransaction