Skip to content

Commit

Permalink
Resolve PR comments from initial PR on HomeCoin (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb authored Mar 8, 2021
1 parent 129c67d commit 69dfb03
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions src/Blockcore.sln
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blockcore.Networks.XRC", "N
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Blockcore.Networks.HomeCoin", "Networks\Blockcore.Networks.HomeCoin\Blockcore.Networks.HomeCoin.csproj", "{074057D3-A1BE-409D-B4B4-F01CFA434D58}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{72D1E288-F3B7-4B13-9CC3-B5CF2AB758FB}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<PropertyGroup>
<LangVersion>latest</LangVersion>
<PackageProjectUrl>https://www.city-chain.org</PackageProjectUrl>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/Networks/Blockcore.Networks.HomeCoin/HomeCoinSetup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ internal class HomeCoinSetup
DefaultRPCPort = 33332,
DefaultAPIPort = 33333,
DefaultSignalRPort = 33334,
PubKeyAddress = 40, // B https://en.bitcoin.it/wiki/List_of_address_prefixes
ScriptAddress = 100, // b
PubKeyAddress = 40, // H https://en.bitcoin.it/wiki/List_of_address_prefixes
ScriptAddress = 100, // h
SecretAddress = 160,
GenesisTime = 1614259698,
GenesisNonce = 60494,
Expand Down
8 changes: 6 additions & 2 deletions src/Node/Blockcore.Node/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,13 @@
"commandName": "Project",
"commandLineArgs": "--chain=XRC -server -iprangefiltering=0 -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser -datadir=nodedata -testnet"
},
"HomeCoin (MAIN)": {
"HOME (MAIN)": {
"commandName": "Project",
"commandLineArgs": "--chain=HOME"
"commandLineArgs": "--chain=HOME -server -iprangefiltering=0 -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser"
},
"HOME (MAIN/LOCAL)": {
"commandName": "Project",
"commandLineArgs": "--chain=HOME -server -iprangefiltering=0 -rpcallowip=127.0.0.1 -rpcbind=127.0.0.1 -rpcpassword=rpcpassword -rpcuser=rpcuser -datadir=nodedata"
}
}
}

0 comments on commit 69dfb03

Please sign in to comment.