Skip to content

Commit

Permalink
Merge pull request #392 from rsksmart/testnet-difficulty-cap-adjustment
Browse files Browse the repository at this point in the history
Update testnet difficulty cap to 3,000,000,000
  • Loading branch information
marcos-iov authored Feb 10, 2025
2 parents 2fd1706 + 7e485c8 commit 13ed0a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

public enum NetworkDifficultyCap {
MAINNET(new BigInteger("7000000000000000000000")),
TESTNET(BigInteger.valueOf(1000000000000000L)),
TESTNET(BigInteger.valueOf(3000000000L)),
REGTEST(BigInteger.valueOf(20L));

private final BigInteger difficultyCap;
Expand Down

0 comments on commit 13ed0a1

Please sign in to comment.