Skip to content

Commit

Permalink
Feature/rsc consensus final (#371)
Browse files Browse the repository at this point in the history
* Changes to the RSC consensus

* Update list of node IPs for RSC

* Update version for next release
  • Loading branch information
sondreb authored Jan 12, 2022
1 parent 26c2211 commit 5507569
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>1.1.26</Version>
<Version>1.1.27</Version>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<Authors>Blockcore</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ public RoyalSportsCityMain()
DefaultMaxOutboundConnections = 16;
DefaultMaxInboundConnections = 109;
MaxTipAge = 2 * 60 * 60;
MinTxFee = 10000;
MinTxFee = 1000000;
MaxTxFee = Money.Coins(1).Satoshi;
FallbackFee = 25000;
MinRelayTxFee = 10000;
FallbackFee = 250000;
MinRelayTxFee = 1000000;
MaxTimeOffsetSeconds = 25 * 60;
DefaultBanTimeSeconds = 16000; // 500 (MaxReorg) * 64 (TargetSpacing) / 2 = 4 hours, 26 minutes and 40 seconds

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ internal class RoyalSportsCitySetup
Magic = "01-52-53-43",
CoinType = 6599,
PremineReward = 3000000000,
PoWBlockReward = 3000,
PoSBlockReward = 1000,
LastPowBlock = 25000,
PoWBlockReward = 210,
PoSBlockReward = 21,
LastPowBlock = 2100,
MaxSupply = 21000000000,
GenesisText = "Decentralized Royal Sports City",
TargetSpacing = TimeSpan.FromSeconds(64),
Expand All @@ -34,7 +34,7 @@ internal class RoyalSportsCitySetup
RootFolderName = "royalsportscity",
CoinTicker = "RSC",
DefaultPort = 14001,
DefaultRPCPort = 15002,
DefaultRPCPort = 14002,
DefaultAPIPort = 14003,
PubKeyAddress = 60, // R
ScriptAddress = 122, // r
Expand All @@ -47,7 +47,7 @@ internal class RoyalSportsCitySetup
HashGenesisBlock = "000009b276ed4815cf1fde9078f2d21facd5ece23e6ccfb31c7f90f87563010f",
HashMerkleRoot = "d8575410f6b019171ff0b4548814e7ae6fc3dd837d5ecc71d77bb21866ddb210",
DNS = new[] { "seed.royalsportscity.com", "seed.royalsportscity.net" },
Nodes = new[] { "130.185.120.45", "185.235.43.17" },
Nodes = new[] { "188.121.108.106", "194.5.207.190", "185.226.117.108", "194.5.207.244", "185.235.43.17", "185.235.41.141", "130.185.120.45", "185.226.116.170" },
Checkpoints = new Dictionary<int, CheckpointInfo>
{
// TODO: Add checkpoints as the network progresses.
Expand Down

0 comments on commit 5507569

Please sign in to comment.