Fix nodeinfo

This commit is contained in:
nicolas.dorier
2018-03-22 12:26:38 +09:00
parent ae7cfe90ab
commit f1c467aa7d
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<Version>1.0.1.56</Version>
<Version>1.0.1.57</Version>
<NoWarn>NU1701,CA1816,CA1308,CA1810,CA2208</NoWarn>
</PropertyGroup>
<ItemGroup>

View File

@@ -23,7 +23,7 @@ namespace BTCPayServer.Payments.Lightning.CLightning
public override string ToString()
{
return $"{NodeId}:{Host}:{Port}";
return $"{NodeId}@{Host}:{Port}";
}
}
}