Skip to content

Commit 69dfb03

Browse files
authored
Resolve PR comments from initial PR on HomeCoin (#295)
1 parent 129c67d commit 69dfb03

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

src/Blockcore.sln

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blockcore.Networks.XRC", "N
139139
EndProject
140140
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blockcore.Networks.HomeCoin", "Networks\Blockcore.Networks.HomeCoin\Blockcore.Networks.HomeCoin.csproj", "{074057D3-A1BE-409D-B4B4-F01CFA434D58}"
141141
EndProject
142+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{72D1E288-F3B7-4B13-9CC3-B5CF2AB758FB}"
143+
ProjectSection(SolutionItems) = preProject
144+
Directory.Build.props = Directory.Build.props
145+
EndProjectSection
146+
EndProject
142147
Global
143148
GlobalSection(SolutionConfigurationPlatforms) = preSolution
144149
Debug|Any CPU = Debug|Any CPU

src/Networks/Blockcore.Networks.City/Blockcore.Networks.City.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
<PropertyGroup>
1313
<LangVersion>latest</LangVersion>
14+
<PackageProjectUrl>https://www.city-chain.org</PackageProjectUrl>
1415
</PropertyGroup>
1516

1617
<ItemGroup>

src/Networks/Blockcore.Networks.HomeCoin/HomeCoinSetup.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ internal class HomeCoinSetup
3636
DefaultRPCPort = 33332,
3737
DefaultAPIPort = 33333,
3838
DefaultSignalRPort = 33334,
39-
PubKeyAddress = 40, // B https://en.bitcoin.it/wiki/List_of_address_prefixes
40-
ScriptAddress = 100, // b
39+
PubKeyAddress = 40, // H https://en.bitcoin.it/wiki/List_of_address_prefixes
40+
ScriptAddress = 100, // h
4141
SecretAddress = 160,
4242
GenesisTime = 1614259698,
4343
GenesisNonce = 60494,

src/Node/Blockcore.Node/Properties/launchSettings.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,13 @@
140140
"commandName": "Project",
141141
"commandLineArgs": "--chain=XRC -server -iprangefiltering=0 -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser -datadir=nodedata -testnet"
142142
},
143-
"HomeCoin (MAIN)": {
143+
"HOME (MAIN)": {
144144
"commandName": "Project",
145-
"commandLineArgs": "--chain=HOME"
145+
"commandLineArgs": "--chain=HOME -server -iprangefiltering=0 -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser"
146+
},
147+
"HOME (MAIN/LOCAL)": {
148+
"commandName": "Project",
149+
"commandLineArgs": "--chain=HOME -server -iprangefiltering=0 -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser -datadir=nodedata"
146150
}
147151
}
148152
}

0 commit comments

Comments
 (0)