mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-26 01:33:02 +01:00
protofsm: don't return error on broadcast fail
We don't return an error on broadcast fail as the broadcast might have failed due to insufficient fees, or inability to be replaced, which may happen when one side attempts to unnecessarily bump their coop close fee.
This commit is contained in:
parent
daed552bf1
commit
a4064c70dc
@ -436,7 +436,7 @@ func (s *StateMachine[Event, Env]) executeDaemonEvent(ctx context.Context,
|
||||
daemonEvent.Tx, daemonEvent.Label,
|
||||
)
|
||||
if err != nil {
|
||||
return fmt.Errorf("unable to broadcast txn: %w", err)
|
||||
log.Errorf("unable to broadcast txn: %v", err)
|
||||
}
|
||||
|
||||
return nil
|
||||
|
Loading…
x
Reference in New Issue
Block a user