This allows to run the test even when no wallet is compiled in.
Also, it is a lot nicer to read now.
This allows to run the test even when no wallet is compiled in.
Also, it is a lot nicer to read now.
<!--e57a25ab6845829454e8d69fc972939a-->
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
<!--021abf342d371248e50ceaed478a90ca-->
See the guideline for information on the review process.
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update.
<!--174a7506f384e20aa4161008e828411d-->
No conflicts as of last run.
Concept ACK
Concept ACK
360 | - def send_self_transfer_chain(self, *, from_node, chain_length, utxo_to_spend=None): 361 | + def send_self_transfer_chain(self, *, from_node, **kwargs): 362 | """Create and send a "chain" of chain_length transactions. The nth transaction in 363 | the chain is a child of the n-1th transaction and parent of the n+1th transaction. 364 | 365 | Returns the chaintip (nth) utxo
nit in fa39d8630c5888a9d432712addab5cff1bd44621:
doc needs to be updated, as it no longer returns a utxo.
Returns a list of objects for each tx (see create_self_transfer_multi).
thanks, fixed doc
26 | @@ -29,7 +27,7 @@ 27 | 28 | class MempoolPackagesTest(BitcoinTestFramework): 29 | def add_options(self, parser): 30 | - self.add_wallet_options(parser) 31 | + self.add_wallet_options(parser, legacy=False)
question, why legacy=False?
Thanks, dropped for now
utACK fa834fa3d5501214e6e98b57d046b85d6e8300c9, looks correct to me. one nit
This is not used right now, but may be in the future. Also, it
simplifies the create_self_transfer return logic
To make the code less verbose and easier to read.
reACK fa6b402