danicoin/src/CryptoNoteCore/IMinerHandler.h

19 lines
595 B
C
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-08-13 10:51:37 +00:00
#pragma once
2015-07-30 15:22:07 +00:00
#include "CryptoNoteCore/CryptoNoteBasic.h"
#include "CryptoNoteCore/Difficulty.h"
2014-08-13 10:51:37 +00:00
2015-05-27 12:08:46 +00:00
namespace CryptoNote {
2015-07-30 15:22:07 +00:00
struct IMinerHandler {
2014-08-13 10:51:37 +00:00
virtual bool handle_block_found(Block& b) = 0;
2015-07-30 15:22:07 +00:00
virtual bool get_block_template(Block& b, const AccountPublicAddress& adr, difficulty_type& diffic, uint32_t& height, const BinaryArray& ex_nonce) = 0;
2014-08-13 10:51:37 +00:00
protected:
2015-07-30 15:22:07 +00:00
~IMinerHandler(){};
2014-08-13 10:51:37 +00:00
};
}