Skip to content

Commit

Permalink
removed duplicate method
Browse files Browse the repository at this point in the history
  • Loading branch information
tbssajal committed Jan 25, 2023
1 parent 33f295d commit d967acf
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/Lachain.Core/Blockchain/Hardfork/HardforkHeights.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,8 @@ public static bool IsHardfork_15Active(ulong height)
return height >= Hardfork_15;
}

public static bool IsHardfork_16Active(ulong height)
{
return height >= Hardfork_16;
}

// adjust gas consumption
// allow contract balance transfer in ExternalHandler.cs
public static bool IsHardfork_16Active(ulong height)
{
return height >= Hardfork_16;
Expand Down

0 comments on commit d967acf

Please sign in to comment.