Skip to content

Commit

Permalink
server: log utxo index with NotifyBroadcast
Browse files Browse the repository at this point in the history
  • Loading branch information
Roasbeef committed Nov 21, 2024
1 parent d6cbc55 commit f12575c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions server.go
Original file line number Diff line number Diff line change
Expand Up @@ -1162,8 +1162,9 @@ func (s *Server) NotifyBroadcast(req *sweep.BumpRequest,
tx *wire.MsgTx, fee btcutil.Amount,
outpointToTxIndex map[wire.OutPoint]int) error {

srvrLog.Tracef("NotifyBroadcast called, req=%v, tx=%v, fee=%v",
spew.Sdump(req), spew.Sdump(tx), fee)
srvrLog.Tracef("NotifyBroadcast called, req=%v, tx=%v, fee=%v, "+
"out_index=%v", spew.Sdump(req), spew.Sdump(tx), fee,
spew.Sdump(outpointToTxIndex))

if err := s.waitForReady(); err != nil {
return err
Expand Down

0 comments on commit f12575c

Please sign in to comment.