3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 10:15:52 +00:00

Fix testnet3 NetworkParameters SubsidyDecreaseBlockCount

This commit is contained in:
Matt Corallo 2012-11-08 12:51:59 -05:00 committed by Mike Hearn
parent fc573d5f1c
commit 4989ecf15a

View File

@ -192,6 +192,7 @@ public class NetworkParameters implements Serializable {
n.genesisBlock.setDifficultyTarget(0x1d00ffffL); n.genesisBlock.setDifficultyTarget(0x1d00ffffL);
n.genesisBlock.setNonce(414098458); n.genesisBlock.setNonce(414098458);
n.setSpendableCoinbaseDepth(100); n.setSpendableCoinbaseDepth(100);
n.setSubsidyDecreaseBlockCount(210000);
n.id = ID_TESTNET; n.id = ID_TESTNET;
String genesisHash = n.genesisBlock.getHashAsString(); String genesisHash = n.genesisBlock.getHashAsString();
checkState(genesisHash.equals("000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943"), checkState(genesisHash.equals("000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943"),