Closed GeorgeTsagk closed 1 year ago
When I use https://github.com/edouardparis/lntop/pull/110/commits/884866d49dd02ff4b321a8e0e1de051bbb5eef3b I get the following logs in ~/.lntop/lntop.log
{"level":"info","ts":1686056923.0092664,"caller":"lnd/lnd.go:646","msg":"pool_capacity too small, ignoring","network":"lnd"}
{"level":"error","ts":1686056923.0123112,"caller":"pubsub/pubsub.go:49","msg":"SubscribeInvoice returned an error","logger":"pubsub","error":"rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp :0: connect: connection refused\"","stacktrace":"github.com/edouardparis/lntop/pubsub.(*PubSub).invoices.func2\n\t/home/george/tests/lntop/pubsub/pubsub.go:49"}
{"level":"error","ts":1686056923.0123231,"caller":"pubsub/pubsub.go:78","msg":"SubscribeTransactions returned an error","logger":"pubsub","error":"rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp :0: connect: connection refused\"","stacktrace":"github.com/edouardparis/lntop/pubsub.(*PubSub).transactions.func2\n\t/home/george/tests/lntop/pubsub/pubsub.go:78"}
{"level":"error","ts":1686056923.0123873,"caller":"pubsub/pubsub.go:107","msg":"SubscribeRoutingEvents returned an error","logger":"pubsub","error":"rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp :0: connect: connection refused\"","stacktrace":"github.com/edouardparis/lntop/pubsub.(*PubSub).routingUpdates.func2\n\t/home/george/tests/lntop/pubsub/pubsub.go:107"}
{"level":"error","ts":1686056923.0123935,"caller":"pubsub/pubsub.go:165","msg":"SubscribeChannels returned an error","logger":"pubsub","error":"rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp :0: connect: connection refused\"","stacktrace":"github.com/edouardparis/lntop/pubsub.(*PubSub).channels.func2\n\t/home/george/tests/lntop/pubsub/pubsub.go:165"}
{"level":"error","ts":1686056923.0126517,"caller":"pubsub/pubsub.go:136","msg":"SubscribeGraphEvents returned an error","logger":"pubsub","error":"rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp :0: connect: connection refused\"","stacktrace":"github.com/edouardparis/lntop/pubsub.(*PubSub).graphUpdates.func2\n\t/home/george/tests/lntop/pubsub/pubsub.go:136"}
Hmmm Error while dialing dial tcp :0: connect: connection refused
seems to not be TLS related. Did you supply the correct port?
Hmmm Error while dialing dial tcp :0: connect: connection refused seems to not be TLS related. Did you supply the correct port?
You're right, thanks. Converting the address
to https://<node>.m.voltageapp.io:10009
fixed it! Now I am normally using lntop
with my Voltage node :)
Thanks for the contribution !
Closes #109