Describe the enhancement
User has a tx, that has outputs at address-index 28 and 1634. The wallet has addresses revealed until 600.
bdkwallet.apply_unconfirmed_txs([new_tx])
bdkwallet.reveal_addresses_to(1634)
outputs = bdkwallet.list_output()
outputs will only contain the output with address index 28. Not 1634.
Workaround
can solve by
bdkwallet.reveal_addresses_to(1634)
bdkwallet.apply_unconfirmed_txs([new_tx])
outputs = bdkwallet.list_output()
but would be nice if bdk was able to handle this switched order correctly
Describe the enhancement
User has a tx, that has outputs at address-index 28 and 1634. The wallet has addresses revealed until 600.
outputs will only contain the output with address index 28. Not 1634.
Workaround
can solve by
but would be nice if bdk was able to handle this switched order correctly