diff --git a/BTCPayServer/BTCPayServer.csproj b/BTCPayServer/BTCPayServer.csproj index 0a252e868..5da02bdcf 100644 --- a/BTCPayServer/BTCPayServer.csproj +++ b/BTCPayServer/BTCPayServer.csproj @@ -2,7 +2,7 @@ Exe netcoreapp2.0 - 1.0.1.56 + 1.0.1.57 NU1701,CA1816,CA1308,CA1810,CA2208 diff --git a/BTCPayServer/Payments/Lightning/CLightning/NodeInfo.cs b/BTCPayServer/Payments/Lightning/CLightning/NodeInfo.cs index 6eb75b3d1..f7264eb5c 100644 --- a/BTCPayServer/Payments/Lightning/CLightning/NodeInfo.cs +++ b/BTCPayServer/Payments/Lightning/CLightning/NodeInfo.cs @@ -23,7 +23,7 @@ namespace BTCPayServer.Payments.Lightning.CLightning public override string ToString() { - return $"{NodeId}:{Host}:{Port}"; + return $"{NodeId}@{Host}:{Port}"; } } }