Skip to content

Commit

Permalink
TestNet3Params: Fix missing assignments for majorityEnforceBlockUpgra…
Browse files Browse the repository at this point in the history
…de, majorityRejectBlockOutdated and majorityWindow.
  • Loading branch information
schildbach committed Jul 28, 2015
1 parent 6f03669 commit bee75f8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/main/java/org/bitcoinj/params/TestNet3Params.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ public TestNet3Params() {
addrSeeds = null;
bip32HeaderPub = 0x043587CF;
bip32HeaderPriv = 0x04358394;

majorityEnforceBlockUpgrade = TestNet2Params.TESTNET_MAJORITY_ENFORCE_BLOCK_UPGRADE;
majorityRejectBlockOutdated = TestNet2Params.TESTNET_MAJORITY_REJECT_BLOCK_OUTDATED;
majorityWindow = TestNet2Params.TESTNET_MAJORITY_WINDOW;
}

private static TestNet3Params instance;
Expand Down

0 comments on commit bee75f8

Please sign in to comment.