diff --git a/routing/router.go b/routing/router.go index a03c3c9e..75fe831d 100644 --- a/routing/router.go +++ b/routing/router.go @@ -1440,7 +1440,11 @@ func generateSphinxPacket(rt *route.Route, paymentHash []byte, log.Tracef("Constructed per-hop payloads for payment_hash=%x: %v", paymentHash[:], newLogClosure(func() string { - return spew.Sdump(sphinxPath[:sphinxPath.TrueRouteLength()]) + path := sphinxPath[:sphinxPath.TrueRouteLength()] + for i := range path { + path[i].NodePub.Curve = nil + } + return spew.Sdump(path) }), )