Unconfirmed transaccion but in mempool reemplacement and confirmed #1481
-
“In mempool, the transaction has been replaced, but in Core Lightning Node (CLN), it is still not confirmed.” umbrel@umbrel:~$ docker exec -it core-lightning_lightningd_1 lightning-cli listfunds TxId |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @PEXmas this has to be addressed at core lightning level, there is nothing RTL can do about it. RTL is showing you, what the core lightning API is returning. Please open an issue here: https://github.com/ElementsProject/lightning cc: @ShahanaFarooqui |
Beta Was this translation helpful? Give feedback.
-
For future reference, user @PEXmas shared the solution on Telegram to re-scan outputs on a CLN node: " To resolve the issue of unconfirmed transactions and update the internal state of Core Lightning, follow these steps: Open the Core Lightning configuration file: nano /umbrel/app-data/core-lightning/data/config Add the following line to enable developer commands: developer Restart the Core Lightning container to apply the changes: docker restart core-lightning_lightningd_1 Rescan the outputs to update the UTXO state: docker exec -it core-lightning_lightningd_1 lightning-cli dev-rescan-outputs Finally, check the updated funds and balances: docker exec -it core-lightning_lightningd_1 lightning-cli listfunds This procedure successfully updated the UTXO state and resolved the issue. |
Beta Was this translation helpful? Give feedback.
For future reference, user @PEXmas shared the solution on Telegram to re-scan outputs on a CLN node:
"
Solved:
To resolve the issue of unconfirmed transactions and update the internal state of Core Lightning, follow these steps:
Open the Core Lightning configuration file: nano /umbrel/app-data/core-lightning/data/config
Add the following line to enable developer commands: developer
Restart the Core Lightning container to apply the changes: docker restart core-lightning_lightningd_1
Rescan the outputs to update the UTXO state: docker exec -it core-lightning_lightningd_1 lightning-cli dev-rescan-outputs
Finally, check the updated funds and balances: docker exec -it core-lightning_lightningd…