/* This file is part of cpp-ethereum. cpp-ethereum is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. cpp-ethereum 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 General Public License for more details. You should have received a copy of the GNU General Public License along with cpp-ethereum. If not, see . */ /** @file BasicAuthority.h * @author Gav Wood * @date 2014 * * Determines the PoW algorithm. */ #pragma once #include #include #include "BlockInfo.h" #include "Common.h" #include "Sealer.h" class BasicAuthoritySeal; namespace dev { namespace eth { /** * The proof of work algorithm base type. * * Must implement a basic templated interface, including: * typename Result * typename Solution * typename CPUMiner * typename GPUMiner * and a few others. TODO */ class BasicAuthority { public: // TODO: remove struct Result {}; struct WorkPackage {}; static const WorkPackage NullWorkPackage; static std::string name() { return "BasicAuthority"; } static unsigned revision() { return 0; } static SealEngineFace* createSealEngine(); class BlockHeaderRaw: public BlockInfo { friend class ::BasicAuthoritySeal; public: bool verify() const; bool preVerify() const; WorkPackage package() const { return NullWorkPackage; } Signature sig() const { return m_sig; } protected: BlockHeaderRaw(BlockInfo const& _bi): BlockInfo(_bi) {} static const unsigned SealFields = 1; void populateFromHeader(RLP const& _header, Strictness _s); void streamRLPFields(RLPStream& _s) const { _s << m_sig; } void clear() { m_sig = Signature(); } void noteDirty() const {} private: Signature m_sig; }; using BlockHeader = BlockHeaderPolished; static const Address Authority; }; } }