You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ETHwPNToken.sol you check for if the hardfork has occurred using block.difficulty == 0. However, according to this Ethereum article for application devs, the check should be block.difficulty > 2**64 == isPostFork:
In ETHwPNToken.sol you check for if the hardfork has occurred using
block.difficulty == 0
. However, according to this Ethereum article for application devs, the check should beblock.difficulty > 2**64 == isPostFork
:https://blog.ethereum.org/en/2021/11/29/how-the-merge-impacts-app-layer
The text was updated successfully, but these errors were encountered: