Skip to content

v1.14.0

Compare
Choose a tag to compare
@danield9tqh danield9tqh released this 14 Dec 23:59
· 398 commits to master since this release
64c70d2

Breaking Changes

  • peer/addPeer RPC now waits for the peer connection to either succeed or fail before returning a result.
  • PartialHeaderSerde and BlockHeader.serializePartial have been removed and are no longer exported from the SDK.
  • wallet/getAccountsStatus RPC no longer accepts an account parameter (it did nothing). Use wallet/getAccountStatus to fetch account status for a single account.
  • wallet/getAccountsStatus RPC now returns:
{
  name: string
  id: string
  head: {
    hash: string
    sequence: number
    inChain: boolean | null
  } | null
  viewOnly: boolean
}

Other Changes

  • Sending a transaction in the CLI now shows a summary of the transaction, including spends and outputs, before sending it. @patnir in #4469
  • We now display a clearer error when passing --path and an invalid argument to the wallet:import command. @dguenther in #4483
  • The wallet/getAccountsStatus RPC now returns whether an account is view-only. @dguenther in #4481
  • Added a wallet/getAccountStatus RPC to return results for a single account. @dguenther in #4482
  • The peer/addPeer RPC now waits for the node to connect to the given peer before returning. @danield9tqh in #4448
  • Fixed a time-related case where snapshot downloads could unexpectedly time out. @dguenther in #4480