Skip to content

bumpfee not returning hash of newly created transaction #16275

@PavelNiedoba

Description

@PavelNiedoba

I'm trying to implement replace by fee functionality with bictoind (v18) and bumpfee rpc call described here

It works by mean that new transaction is created with higher fee, but result should be:

{
  "txid":    "value",   (string)  The id of the new transaction
  "origfee":  n,         (numeric) Fee of the replaced transaction
  "fee":      n,         (numeric) Fee of the new transaction
  "errors":  [ str... ] (json array of strings) Errors encountered during processing (may be empty)
}

but I'm getting basically all null response

{
  "id": "BumpFeeRequest 1561247020661",
  "error": null,
  "txid": null,
  "origfee": null,
  "fee": null,
  "errors": null
}

Which makes it hard to identify the new transaction in down-steam system.

I believe that hash of newly created tx should be returned

I posted this also here:
https://bitcoin.stackexchange.com/questions/88560/bitcoind-jsonrpc-bumpfee-not-returning-hash-of-newly-created-transaction

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions