Brice
Brice
Closing -- included in #6219
> Signer key: > > 025b55f3c4ce97bf39f7c7ae45f71a12a5dadaf4f4fd6964e52c914128d021433b > > [Mainnet signer logs.txt](https://github.com/user-attachments/files/16829282/Mainnet.signer.logs.txt) [testnet signer logs.txt](https://github.com/user-attachments/files/16829283/testnet.signer.logs.txt) These mainnet logs look good. The testnet logs appear to be stacks-node logs, not signer logs,...
> Signer STX address: SP2VK5S20KQ1QHFBDRKRJD5EW12TYHAZJMPAFFQEK > > [non stackingSigner logs.txt](https://github.com/user-attachments/files/16851213/non.stackingSigner.logs.txt) This seems to be known based on the filename, but this signer is not registered for the cycle that these...
This is just a side effect of the fact that the read-only checker runs before the type-checker. I don't think this is necessarily a problem.
To avoid problem 1, @kantai's suggestion: > Yeah, realistically, the miner should always spend its last commit’s UTXO > And add another input if necessary We can make this change...
@kantai I think to resolve this, I basically just want to delete this code: https://github.com/stacks-network/stacks-core/blob/c125757949409beb70614bbe3f4768fe458a9266/testnet/stacks-node/src/burnchains/bitcoin_regtest_controller.rs#L1620-L1629 Does that seem right to you? I don't think that case will ever be good...
It's going to be difficult to test 😰.
Also this I think: ```diff diff --git a/testnet/stacks-node/src/burnchains/bitcoin_regtest_controller.rs b/testnet/stacks-node/src/burnchains/bitcoin_regtest_controller.rs index 5cab6be2ad..2447152293 100644 --- a/testnet/stacks-node/src/burnchains/bitcoin_regtest_controller.rs +++ b/testnet/stacks-node/src/burnchains/bitcoin_regtest_controller.rs @@ -1539,6 +1539,12 @@ impl BitcoinRegtestController { Ok(true) ); if ongoing_tx_confirmed { + if...
This was resolved in #6219.