Skip to content
Update C Lightning Modifications authored by Ken Sedgwick's avatar Ken Sedgwick
......@@ -24,20 +24,20 @@ struct simple_htlc {
};
```
* We add wallet index metadata to existing messages (fill in existing PSBT fields):
- Added fields to `channeld_wire.csv`:`channeld_init`:
- Added fields to [`channeld_wire.csv`:`channeld_init`:] (https://github.com/ElementsProject/lightning/pull/4993) **merged**
* `final_index`
* `final_ext_key`
- Added fields to `channeld_wire.csv`:`channeld_send_shutdown`:
- Added fields to [`channeld_wire.csv`:`channeld_send_shutdown`:](https://github.com/ElementsProject/lightning/pull/4993) **merged**
* `final_index`
* `final_ext_key`
- Added fields to `onchaind_wire.csv`:`onchaind_init`:
- Added fields to [`onchaind_wire.csv`:`onchaind_init`:](https://github.com/ElementsProject/lightning/pull/4993) **merged**
* `ourwallet_index`
* `ourwallet_ext_key`
- Added fields to `closingd_wire.csv`:`closingd_init`:
- Added fields to [`closingd_wire.csv`:`closingd_init`:](https://github.com/ElementsProject/lightning/pull/4993) **merged**
* `local_wallet_index`
* `local_wallet_ext_key`
* Add wallet index metadata to `towire_hsmd_sign_withdrawal` outputs (change)
* Add wallet index metadata to [`towire_hsmd_sign_withdrawal` outputs (change)](https://github.com/ElementsProject/lightning/pull/4993) **merged**
In all of the above cases we only care about the `index`, but we update the PSBT sent to the signer and `ext_key` completes the PSBT element.
......
......