/* * Copyright 2013 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.devcoin.params; import com.google.devcoin.core.Block; import java.math.BigInteger; import static com.google.common.base.Preconditions.checkState; /** * Network parameters for the regression test mode of bitcoind in which all blocks are trivially solvable. */ public class RegTestParams extends TestNet2Params { private static final BigInteger PROOF_OF_WORK_LIMIT = new BigInteger("7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff", 16); public RegTestParams() { super(); interval = 10000; proofOfWorkLimit = PROOF_OF_WORK_LIMIT; subsidyDecreaseBlockCount = 10000; port = 18444; } @Override public boolean allowEmptyPeerChain() { return true; } private static Block genesis; @Override public Block getGenesisBlock() { synchronized (RegTestParams.class) { if (genesis == null) { genesis = super.getGenesisBlock(); genesis.setNonce(2); genesis.setDifficultyTarget(0x207fFFFFL); genesis.setTime(1296688602L); checkState(genesis.getHashAsString().toLowerCase().equals("0f9188f13cb7b2c71f2a335e3a4fc328bf5beb436012afca590b1a11466e2206")); } return genesis; } } private static RegTestParams instance; public static synchronized RegTestParams get() { if (instance == null) { instance = new RegTestParams(); } return instance; } }