@@ -11645,7 +11645,7 @@ where
11645
11645
11646
11646
fn handle_tx_add_output(&self, counterparty_node_id: PublicKey, msg: &msgs::TxAddOutput) {
11647
11647
// Note that we never need to persist the updated ChannelManager for an inbound
11648
- // tx_add_input message - interactive transaction construction does not need to
11648
+ // tx_add_output message - interactive transaction construction does not need to
11649
11649
// be persisted before any signatures are exchanged.
11650
11650
let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
11651
11651
let _ = handle_error!(self, self.internal_tx_add_output(counterparty_node_id, msg), counterparty_node_id);
@@ -11655,7 +11655,7 @@ where
11655
11655
11656
11656
fn handle_tx_remove_input(&self, counterparty_node_id: PublicKey, msg: &msgs::TxRemoveInput) {
11657
11657
// Note that we never need to persist the updated ChannelManager for an inbound
11658
- // tx_add_input message - interactive transaction construction does not need to
11658
+ // tx_remove_input message - interactive transaction construction does not need to
11659
11659
// be persisted before any signatures are exchanged.
11660
11660
let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
11661
11661
let _ = handle_error!(self, self.internal_tx_remove_input(counterparty_node_id, msg), counterparty_node_id);
@@ -11665,7 +11665,7 @@ where
11665
11665
11666
11666
fn handle_tx_remove_output(&self, counterparty_node_id: PublicKey, msg: &msgs::TxRemoveOutput) {
11667
11667
// Note that we never need to persist the updated ChannelManager for an inbound
11668
- // tx_add_input message - interactive transaction construction does not need to
11668
+ // tx_remove_output message - interactive transaction construction does not need to
11669
11669
// be persisted before any signatures are exchanged.
11670
11670
let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
11671
11671
let _ = handle_error!(self, self.internal_tx_remove_output(counterparty_node_id, msg), counterparty_node_id);
@@ -11675,7 +11675,7 @@ where
11675
11675
11676
11676
fn handle_tx_complete(&self, counterparty_node_id: PublicKey, msg: &msgs::TxComplete) {
11677
11677
// Note that we never need to persist the updated ChannelManager for an inbound
11678
- // tx_add_input message - interactive transaction construction does not need to
11678
+ // tx_complete message - interactive transaction construction does not need to
11679
11679
// be persisted before any signatures are exchanged.
11680
11680
let _persistence_guard = PersistenceNotifierGuard::optionally_notify(self, || {
11681
11681
let _ = handle_error!(self, self.internal_tx_complete(counterparty_node_id, msg), counterparty_node_id);
0 commit comments