/* * Copyright (c) [2016] [ <ether.camp> ] * This file is part of the ethereumJ library. * * The ethereumJ library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * The ethereumJ library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with the ethereumJ library. If not, see <http://www.gnu.org/licenses/>. */ package org.ethereum.mine; import com.google.common.util.concurrent.ListenableFuture; import org.ethereum.config.SystemProperties; import org.ethereum.core.Block; import org.ethereum.core.BlockHeader; /** * The adapter of Ethash for MinerIfc * * Created by Anton Nashatyrev on 26.02.2016. */ public class EthashMiner implements MinerIfc { SystemProperties config; private int cpuThreads; private boolean fullMining = true; public EthashMiner(SystemProperties config) { this.config = config; cpuThreads = config.getMineCpuThreads(); fullMining = config.isMineFullDataset(); } @Override public ListenableFuture<MiningResult> mine(Block block) { return fullMining ? Ethash.getForBlock(config, block.getNumber()).mine(block, cpuThreads) : Ethash.getForBlock(config, block.getNumber()).mineLight(block, cpuThreads); } @Override public boolean validate(BlockHeader blockHeader) { return Ethash.getForBlock(config, blockHeader.getNumber()).validate(blockHeader); } }