Skip to content

Commit

Permalink
Set hardfork_12 heights
Browse files Browse the repository at this point in the history
  • Loading branch information
sgladkov committed Sep 2, 2022
1 parent ca660b6 commit e8b5f4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Lachain.Core/Config/ConfigManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -396,10 +396,10 @@ private void _UpdateConfigToV14()
throw new ApplicationException("No hardfork section in config");
hardforks.Hardfork_12 ??= network.NetworkName switch
{
"mainnet" => 0,
"testnet" => 0,
"devnet" => 0,
_ => 0
"mainnet" => 5390300,
"testnet" => 5073300,
"devnet" => 1270300,
_ => 10
};
_config["hardfork"] = JObject.FromObject(hardforks);

Expand Down

0 comments on commit e8b5f4b

Please sign in to comment.