Skip to content

Commit

Permalink
Minor style cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
zenhack committed Mar 23, 2023
1 parent 0799051 commit 9a40e87
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions rpc/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -1797,12 +1797,8 @@ func (c *Conn) handleResolve(ctx context.Context, in transport.IncomingMessage)
}
c.sendMessage(ctx, disembargo.buildDisembargo, func(err error) {
if err != nil {
c.er.ReportError(
exc.WrapError(
"incoming resolve: send disembargo",
err,
),
)
err = exc.WrapError("incoming resolve: send disembargo", err)
c.er.ReportError(err)
}
})
}
Expand Down

0 comments on commit 9a40e87

Please sign in to comment.