mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 21:42:47 +01:00
f24bcce2ac
b867e40
CreateNewBlock: Stick height in coinbase so we pass template sanity check (Luke Dashjr)60755db
submitblock: Check for duplicate submissions explicitly (Luke Dashjr)bc6cb41
QA RPC tests: Add tests block block proposals (Luke Dashjr)9765a50
Implement BIP 23 Block Proposal (Luke Dashjr)3dcbb9b
Abstract DecodeHexBlk and BIP22ValidationResult functions out of submitblock (Luke Dashjr)132ea9b
miner_tests: Disable checkpoints so they don't fail the subsidy-change test (Luke Dashjr)df08a62
TestBlockValidity function for CBlock proposals (used by CreateNewBlock) (Luke Dashjr)4ea1be7
CreateNewBlock and miner_tests: Also check generated template is valid by CheckBlockHeader, ContextualCheckBlockHeader, CheckBlock, and ContextualCheckBlock (Luke Dashjr)a48f2d6
Abstract context-dependent block checking from acceptance (Luke Dashjr)
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
// Copyright (c) 2009-2014 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_CORE_IO_H
|
|
#define BITCOIN_CORE_IO_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class CBlock;
|
|
class CScript;
|
|
class CTransaction;
|
|
class uint256;
|
|
class UniValue;
|
|
|
|
// core_read.cpp
|
|
extern CScript ParseScript(std::string s);
|
|
extern bool DecodeHexTx(CTransaction& tx, const std::string& strHexTx);
|
|
extern bool DecodeHexBlk(CBlock&, const std::string& strHexBlk);
|
|
extern uint256 ParseHashUV(const UniValue& v, const std::string& strName);
|
|
extern std::vector<unsigned char> ParseHexUV(const UniValue& v, const std::string& strName);
|
|
|
|
// core_write.cpp
|
|
extern std::string FormatScript(const CScript& script);
|
|
extern std::string EncodeHexTx(const CTransaction& tx);
|
|
extern void ScriptPubKeyToUniv(const CScript& scriptPubKey,
|
|
UniValue& out, bool fIncludeHex);
|
|
extern void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry);
|
|
|
|
#endif // BITCOIN_CORE_IO_H
|