627c13c0fc
Version 4.2.1.0 - wallet makeover - staking behaviour adjustments - non mandatory update- - no need for updating daemons (only recomended if used for staking)
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2012 The Bitcoin developers
|
|
// Copyright (c) 2014-2015 Triangles team
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
#ifndef TRIANGLES_MINER_H
|
|
#define TRIANGLES_MINER_H
|
|
|
|
#include "main.h"
|
|
#include "wallet.h"
|
|
|
|
/* Generate a new block, without valid proof-of-work */
|
|
CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake=false, int64_t* pFees = 0);
|
|
|
|
/** Modify the extranonce in a block */
|
|
void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce);
|
|
|
|
/** Do mining precalculation */
|
|
void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1);
|
|
|
|
/** Check mined proof-of-work block */
|
|
bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey);
|
|
|
|
/** Check mined proof-of-stake block */
|
|
bool CheckStake(CBlock* pblock, CWallet& wallet);
|
|
|
|
/** Base sha256 mining transform */
|
|
void SHA256Transform(void* pstate, void* pinput, const void* pinit);
|
|
|
|
#endif // TRIANGLES_MINER_H
|
|
|
|
|