1296 Commits

Author SHA1 Message Date
Antoine Poinsot
990b153107
commands: don't query unconfirmed coins when creating recovery tx
They would be discarded immediately in the filter below.
2023-12-08 15:07:33 +01:00
Antoine Poinsot
c63a120794
spend: don't use database's Coin type
We could use a trait but instead there is just a couple fields we need so simply copy them over.
2023-12-08 15:07:33 +01:00
Antoine Poinsot
08ce0ad1d7
spend: update comment about create_spend behaviour 2023-12-08 15:07:32 +01:00
Antoine Poinsot
0c395bb63c
spend: document the create_spend function 2023-12-08 15:07:29 +01:00
Antoine Poinsot
f3113ba0d2
commands: remove redundant output value check
It's already performed (twice) in spend::create_psbt()
2023-12-08 15:03:28 +01:00
Antoine Poinsot
5894e788b8
spend: move tx size calc helper back to command module
It's not needed in spend anymore
2023-12-08 15:03:27 +01:00
Antoine Poinsot
6ddda6137c
spend: make coin selection helpers private
They aren't externally called anymore
2023-12-08 15:03:27 +01:00
Antoine Poinsot
33be1ff18b
commands: make create_recovery use the create_spend helper
Now that we have sweep capability no need to duplicate half the logic, just reuse the helper.
2023-12-08 15:03:26 +01:00
Antoine Poinsot
0523f0047f
commands: update next deriv index for any spend output address
It's basically free to do now, so we might as well do it.
2023-12-08 15:03:26 +01:00
Antoine Poinsot
5d50155532
spend: avoid direct access to our Bitcoin backend
We introduce a trait to get the wallet transaction correponding to the
transaction input in order to encapsulate the spend module.
2023-12-08 15:03:24 +01:00
Antoine Poinsot
7c238124be
spend: don't access the database in the PSBT creation function
Instead, pass the address details, if known, as a parameter.
2023-12-07 10:31:10 +01:00
Antoine Poinsot
22f97e11b7
spend: let caller update next derivation index
This is a first step toward removing the database accesses from the
spend PSBT creation helper. It now always take a change address, and
return whether it used it. If it did the caller retrieves the
information about the change address and if necessary bumps the next
derivation index to use.
2023-12-07 10:31:10 +01:00
Antoine Poinsot
9fdb75cf88
commands: split up spend transaction creation into its own module
This moves create_spend_internal in bulk. The interface is still inappropriate and will be adapted in the next commits.
2023-12-07 10:31:08 +01:00
Antoine Poinsot
870d4899b1
Merge #845: Cargo: use the published bdk_coin_select
36700c47596c396fe9b6cde432bd6c33961aceed Cargo: use the published bdk_coin_select (Antoine Poinsot)

Pull request description:

  Draft until https://github.com/bitcoindevkit/coin-select/pull/9 is published on crates.io.

ACKs for top commit:
  jp1ac4:
    ACK 36700c4759.

Tree-SHA512: 52caf8e79641e6f2bb0a58a75480866d5e99d9a6d9e220cd92b3de1c7f612166ee220c49f49c766271dac67c317c7b50a09763c4451988e2cfff517234833af7
2023-12-07 10:04:02 +01:00
Antoine Poinsot
f4d22a987e
Merge #816: commands: add rbfpsbt command
0ab00cd6580ddc1964f4f328a90ab9c5f3f87efa gui: keep conflicting PSBTs as Pending until confirmation (jp1ac4)
5391bfe04ccbe2103460cd195fe4ea3309507118 commands: add `rbfpsbt` command (jp1ac4)
d5f31674045155b6a9be7e08e4beab4c2187b573 commands: add `create_spend_internal` function (jp1ac4)
714fd5e142ffdf95d5ca96cd5a1d6edbc68239bb bitcoin: add `mempool_spenders` to Bitcoin interface (jp1ac4)
68b2503b12cececb1e3259d2d88a34e5191ec232 func tests: move function to utils (jp1ac4)
fdab722effa79c6063e5b40748409ac4048aa1b6 func tests: run black (jp1ac4)

Pull request description:

  This PR relates to #43 and #236.

  It adds a `rbfpsbt` command that generates a PSBT to replace an existing transaction using RBF. This replacement can either preserve non-change outputs and simply bump fees or remove non-change outputs and effectively cancel the transaction. The inputs and change output may need to be updated in accordance with the higher fee.

  I've also added a `getmempoolentry` call to the bitcoin interface that is used for checking information about descendant transactions.

  To facilitate development, I've made some temporary changes in the GUI so that replacement PSBTs can be signed and broadcast, but these changes might not be part of this PR in the end.

ACKs for top commit:
  darosior:
    ACK 0ab00cd6580ddc1964f4f328a90ab9c5f3f87efa

Tree-SHA512: a172ad895fac13be294451f2ffeccb91af521d58a3bc6d08e09688996f9a3e07a3e230091982ef5e92472d44db77b34f93b81d1111d2c570d9c5dd85b7c21f0f
2023-12-06 20:25:57 +01:00
jp1ac4
0ab00cd658
gui: keep conflicting PSBTs as Pending until confirmation 2023-12-06 17:35:06 +00:00
jp1ac4
5391bfe04c
commands: add rbfpsbt command 2023-12-06 17:35:05 +00:00
jp1ac4
d5f3167404
commands: add create_spend_internal function
This is a more general version of `create_spend` in that it allows
for a mixure of both mandatory and optional coin selection candidates
and has a `min_fee` parameter.

Another difference is that it takes destination addresses that have
been checked for the network and amounts as `Amount`.

`create_spend` has been updated to call `create_spend_internal`.
2023-12-06 17:35:05 +00:00
jp1ac4
714fd5e142
bitcoin: add mempool_spenders to Bitcoin interface
`is_in_mempool` has been updated to use `mempool_entry`.
2023-12-06 17:35:05 +00:00
Antoine Poinsot
36700c4759
Cargo: use the published bdk_coin_select 2023-12-05 10:00:09 +01:00
Antoine Poinsot
bcfab48c39
Merge #828: gui: installer: clearer placeholder in xpub edit field
3077062c84f598350248e6725e5781b9bc209ce9 gui: installer: clearer placeholder in xpub edit field (Antoine Poinsot)

Pull request description:

  I'm not sure what rustfmt is doing here.

  Fixes #451.

ACKs for top commit:
  pythcoiner:
    utACK 3077062c84
  edouardparis:
    utACK 3077062c84f598350248e6725e5781b9bc209ce9

Tree-SHA512: 79637d3c147c19ff5b7a4758da62089e51990d611e992591b2368f2e3135c06c547804d75c0bf3e5394843e29d582edb71487039a23fdae507cc6c6eae28ec36
2023-12-04 11:49:54 +01:00
jp1ac4
68b2503b12
func tests: move function to utils 2023-11-28 13:55:26 +00:00
jp1ac4
fdab722eff
func tests: run black 2023-11-28 13:55:25 +00:00
edouardparis
7011210fc2
Merge #825: handle psbt missing input coins
40ade751e0a00cde2a8eec3260eb267534a75f61 Fix transactions Labelled methods (edouardparis)
b4729c37286a1e1fc7584b935a47f458a2c8aef9 Split inputs and outputs view (edouardparis)
946e499b5a1f0f340169ace8228bddb451a8a7a2 Handle missing coin inputs in tx and psbt (edouardparis)

Pull request description:

ACKs for top commit:
  jp1ac4:
    ACK 40ade751e0.

Tree-SHA512: b823b78d0730a1b23a0df4834b7a622f767119a63e6f0e86cb61eb4d422fbcfcd182f5a4726d7140f444fe0cf1722c774026091ad15a11aadea8542f875dd278
2023-11-28 13:44:34 +01:00
edouardparis
40ade751e0 Fix transactions Labelled methods
Better to use the input previous output
field instead of relying of possible missing
coin.
2023-11-28 13:08:35 +01:00
edouardparis
b4729c3728 Split inputs and outputs view
Inputs does not need to be displayed
for external incoming transactions
2023-11-28 13:07:35 +01:00
edouardparis
946e499b5a Handle missing coin inputs in tx and psbt
As coins deposited by an unconfirmed
transactions can be removed from
the database, GUI should not rely
on them to calculate fees.
The fees must be passed as Option.

If a input coin is missing for a psbt,
we use the witness_utxo amount
and settle the total fee to None
if both are absents.
2023-11-27 17:48:35 +01:00
Antoine Poinsot
7bfc53890a
Merge #821: Make it possible to create a sweep transaction using createspend
6bd6218d64495e6b5ac844861434ee8b1564ea02 qa: demonstrate sweep functionality using createpsbt's change_address (Antoine Poinsot)
a77a36cb9eac49d7a936cf24bd02122c085b894e commands: make it possible to create a sweep spend transaction (Antoine Poinsot)

Pull request description:

  We add a way to specify what change address to use. This allows the caller to set an external address which has for effect to sweep all the inputs' value to this address, after deduction of the fees and the other (optionally) set destination addresses.

  For instance, combined with a self-send (no other destination) and by setting all the wallet's unspent coins, this allows one to sweep all the funds of the wallet to an external address.

ACKs for top commit:
  jp1ac4:
    ACK 6bd6218d64.

Tree-SHA512: d157bf5782a743297ec243c071b3cf2215f2836710f583a3a1a363bbc4a0504db73297e9be4b583b36377094976cacb4f46d18cee96153e00eec5e94c96ac710
2023-11-24 18:24:52 +01:00
Antoine Poinsot
6bd6218d64
qa: demonstrate sweep functionality using createpsbt's change_address 2023-11-24 13:51:43 +01:00
Antoine Poinsot
a77a36cb9e
commands: make it possible to create a sweep spend transaction
We leverage the change logic for this. By making it possible to set the
change address to an external address, one can send all the value from
the inputs to this address.
2023-11-24 13:51:42 +01:00
Antoine Poinsot
cecc1a040c
Merge #832: commands: require change for self-send
6123b87a024c04906338aa68c6afbcf57d57fc0b commands: fix documentation (jp1ac4)
b8fd97fc83a18acb8f1f6b20216fd048955e909d commands: require change for self-send (jp1ac4)

Pull request description:

  This adds a new `LowestFeeChangeCondition` metric for use in coin selection. It's the same as `LowestFee` with the option to only find solutions with change.

  This option is then used for self-sends to ensure only a solution with change will be returned.

ACKs for top commit:
  darosior:
    ACK 6123b87a024c04906338aa68c6afbcf57d57fc0b

Tree-SHA512: af12ddce712be31bfdf6bd7eea2fcc651cdbafef32e5b59f7b30dbbc6cf55a13ca5658075942b76947d87c384681f1dbae2d579c8d58298202bf85b9b066a1e0
2023-11-24 11:37:21 +01:00
jp1ac4
6123b87a02
commands: fix documentation 2023-11-24 10:10:22 +00:00
jp1ac4
b8fd97fc83
commands: require change for self-send
This adds a new `LowestFeeChangeCondition` metric for use in
coin selection. It's the same as `LowestFee` with the option
to only find solutions with change.

This option is then used for self-sends to ensure only a solution
with change will be returned.
2023-11-24 10:10:22 +00:00
Antoine Poinsot
ed35a796ff
Merge #829: bitcoin: poller: fix spend expiration from mempool, again
758a4d6578aba487ae6ea06d32ece247525aba8b bitcoin: poller: fix spend expiration from mempool, again (Antoine Poinsot)

Pull request description:

  Always mark a spend dropped from mempool as expired if it, or a conflict spending this coin, wasn't mined. The previous logic was confused: it would only do so if a conflict was detected, but it's not the only reason for a tx to be dropped from the mempool.

ACKs for top commit:
  jp1ac4:
    ACK 758a4d6578.

Tree-SHA512: 84cab482c139dd7170e1139f2718550036195bb6262090af89c1e5eb51c0f3abfd344158b8bf20884a638d77ce342801c66182209e1776b3db9b2700f32deab3
2023-11-21 13:29:02 +01:00
Antoine Poinsot
758a4d6578
bitcoin: poller: fix spend expiration from mempool, again
Always mark a spend dropped from mempool as expired if it, or a conflict spending this coin, wasn't mined. The previous logic was confused: it would only do so if a conflict was detected, but it's not the only reason for a tx to be dropped from the mempool.
2023-11-21 11:20:20 +01:00
Antoine Poinsot
3077062c84
gui: installer: clearer placeholder in xpub edit field
I'm not sure what rustfmt is doing here.

Fixes #451.
2023-11-20 19:16:57 +01:00
Antoine Poinsot
1df4ab8f07
Merge #819: Verify receive address
e9a217b3d87fc5ccd284df33fc58f877c7a5103e Add verify address modal to receive panel (edouardparis)
fa992aa5649ec406eb696437c86f9bc781d5a0b8 gui: move receive panel to its own file (edouardparis)

Pull request description:

ACKs for top commit:
  jp1ac4:
    utACK e9a217b3d8.

Tree-SHA512: 4b34260304f6417146c920861c63f4c4f5f9823a3f73538a398eba0144dee9c4630fe91007dfc34ae07e5957926cc30464abd8c55679b899dc9612e8aa4d98ce
2023-11-20 17:42:08 +01:00
edouardparis
e9a217b3d8 Add verify address modal to receive panel
bump async-hwi v0.0.13
2023-11-20 15:30:37 +01:00
edouardparis
fa992aa564 gui: move receive panel to its own file 2023-11-20 15:10:25 +01:00
Antoine Poinsot
f512f3c511
Merge #824: qa: fix flaky test of unconfirmed spend RBF
6b5fc2d1faf94d8290a30bd7007113815c8936ea qa: fix flaky test of unconfirmed spend RBF (Antoine Poinsot)

Pull request description:

  Since #617 the spend info for a coin may be wiped from the DB. Be robust to a temporarily `None` spend info in the functional test.

  See for instance https://github.com/wizardsardine/liana/runs/18785511349.

ACKs for top commit:
  darosior:
    ACK 6b5fc2d1faf94d8290a30bd7007113815c8936ea -- trivial and i've run this test a few dozen times concurrently locally to make sure it's unflaked.

Tree-SHA512: 7470a1fd4c16ee7af6ee4c9d9e57271f5f18ac728062cc937a366681534714ec404f2b8e0a58e0d5f51a7461e28dcae6d93f49e5fc0f45297eae9b979e821f86
2023-11-20 14:56:22 +01:00
Antoine Poinsot
6b5fc2d1fa
qa: fix flaky test of unconfirmed spend RBF 2023-11-20 14:53:03 +01:00
Antoine Poinsot
38b851e188
Merge #817: Bitcoin state poller: a bug fix and a few RBF handling improvements
317ab964f707f049e51bbb4be7ae32975ca3da45 bitcoin: add a comment about the new spend detection logic (Antoine Poinsot)
6daf7ac2603a4a4f588e6106d3c4398228113b97 poller: don't check spending status of expired coins (Antoine Poinsot)
0e5634ce5986d70ab703f639882e35bba6ee571f bitcoin: poller: document where RBF is handled for spends (Antoine Poinsot)
cf7c4fbac96c421c311fd86255cdea26394954e3 bitcoin: drop spend txid for coins whose spending tx gets RBF'd (Antoine Poinsot)
544167dee4c631b324848d9f558ba48504582018 bitcoin: mark coins whose spending tx got double spent as unspent again (Antoine Poinsot)
f78e831c39311cd5d758ea81d6e855a85d13fa5c db: make it possible to mark coins back as unspent (Antoine Poinsot)
c30bc8cd18ac77f64179a8794a26770c68eb4916 bitcoin: optimize spend conflict confirmation lookup (Antoine Poinsot)
bc25addf342d5f570eb20f97b0413bb7109f0be9 bitcoin: don't assign incorrect spend_txid on conflict tx confirmation (Antoine Poinsot)
20ab30924fbdf62bb3886b2da75fe8c57555d2b6 qa: add a test describing current poller behaviour wrt replacements (Antoine Poinsot)

Pull request description:

  We start by illustrating the current logic of the poller with regard to replacements in a functional test. This exposes a bug: we could incorrectly assign a transaction which conflicts with a spend transaction for one of our coin as spending this coin whereas it in fact didn't.

  After fixing this bug, we proceed to make it possible to wipe the spending status back to unspent. First when a conflict is mined, then also when it's only accepted into our mempool. This matches how we treat replacements for deposit transactions.

ACKs for top commit:
  jp1ac4:
    ACK 317ab964f7.

Tree-SHA512: bfad864cf03947e5d42894de12ae281a8cff10964d299df5b6b74310efbe6bbefb347349b2d421f1fb3e9470fa929fd7c2c221c9f161dd602757f75b66355ea0
2023-11-17 14:25:20 +01:00
Antoine Poinsot
639cac7bf3
Merge #563: gui: Add automated coin selection for spend
9e2407eb8a75bc59c16659bf4aa80f8adef0e3d2 gui: auto-select coins for spend (jp1ac4)

Pull request description:

  This adds automated coin selection from #560 to the GUI.

  The new "Auto-select" button uses automated coin selection to select coins for a spend, which the user can then modify as required.

  The button can only be clicked once the recipients and feerate have been validated, and it does not appear when creating a self-send.

  I haven't added any validation on the amount before making the button clickable, but it may be hard to anticipate all coin selection errors once fees are taken into consideration.

ACKs for top commit:
  darosior:
    light ACK 9e2407eb8a75bc59c16659bf4aa80f8adef0e3d2

Tree-SHA512: 6ce3389d849470b3beb6ac8df75d2c3b7b6c04ee881dd0e9116c4d87f54376a8ed6666cbfd0ff0152a3eb839c8f7f17a175fe078ef030f03451430b84ab40cb6
2023-11-17 14:24:06 +01:00
Antoine Poinsot
317ab964f7
bitcoin: add a comment about the new spend detection logic 2023-11-17 13:53:02 +01:00
Antoine Poinsot
6daf7ac260
poller: don't check spending status of expired coins
If the deposit tx itself isn't in mempool anymore, it's always going to
fail. Avoid needless work and error log.
2023-11-17 13:53:01 +01:00
Antoine Poinsot
0e5634ce59
bitcoin: poller: document where RBF is handled for spends 2023-11-17 13:53:00 +01:00
Antoine Poinsot
cf7c4fbac9
bitcoin: drop spend txid for coins whose spending tx gets RBF'd
Even if the RBF does not spend this coin anymore.
2023-11-17 13:53:00 +01:00
Antoine Poinsot
544167dee4
bitcoin: mark coins whose spending tx got double spent as unspent again 2023-11-17 13:52:59 +01:00
Antoine Poinsot
f78e831c39
db: make it possible to mark coins back as unspent 2023-11-17 13:52:59 +01:00
Antoine Poinsot
c30bc8cd18
bitcoin: optimize spend conflict confirmation lookup
Make it possible to break immediately if it's found.
2023-11-17 13:52:58 +01:00