forked from stratisproject/StratisBitcoinFullNode
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add network definition for Main, Test and RegTest. - Mine the genesis blocks for all networks.
- Loading branch information
Showing
14 changed files
with
891 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"profiles": { | ||
"City.Chain.DNS": { | ||
"commandName": "Project" | ||
}, | ||
"City.Chain.DNS (Test Network)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-testnet -dnslistenport=5399 -dnshostname=dns.city-chain.org -dnsnameserver=ns1.dns.city-chain.org -dnsmailbox=admin@city-chain.org" | ||
}, | ||
"City.Chain.DNS (FullNode Test Network)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-testnet -dnsfullnode -dnslistenport=5399 -dnshostname=dns.city-chain.org -dnsnameserver=ns1.dns.city-chain.org -dnsmailbox=admin@city-chain.org" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
|
||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" /> | ||
<PackageReference Include="xunit" Version="2.3.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> | ||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\NBitcoin\NBitcoin.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"profiles": { | ||
"City.Chain": { | ||
"commandName": "Project" | ||
}, | ||
"City.Chain (Local Data Dir)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-datadir=citynode" | ||
}, | ||
"City.Chain (Test Network)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-coin city -network test" | ||
}, | ||
"City.Chain (Test Network with RPC)": { | ||
"commandName": "Project", | ||
"commandLineArgs": "-coin city -network test -server -rpcpassword=password -rpcuser=user" | ||
} | ||
} | ||
} |
Oops, something went wrong.