19 TxInputStream(
int nVersionIn,
const unsigned char *txTo,
size_t txToLen) :
20 m_version(nVersionIn),
27 if (dst.
size() > m_remaining) {
28 throw std::ios_base::failure(std::string(__func__) +
": end of data");
31 if (dst.
data() ==
nullptr) {
32 throw std::ios_base::failure(std::string(__func__) +
": bad destination buffer");
35 if (m_data ==
nullptr) {
36 throw std::ios_base::failure(std::string(__func__) +
": bad source buffer");
39 memcpy(dst.
data(), m_data, dst.
size());
40 m_remaining -= dst.
size();
51 int GetVersion()
const {
return m_version; }
54 const unsigned char* m_data;
74 const unsigned char *txTo ,
unsigned int txToLen,
83 if (nIn >= tx.
vin.size())
92 return VerifyScript(tx.
vin[nIn].scriptSig,
CScript(scriptPubKey, scriptPubKey + scriptPubKeyLen), &tx.
vin[nIn].scriptWitness,
flags,
TransactionSignatureChecker(&tx, nIn, amount, txdata,
MissingDataBehavior::FAIL),
nullptr);
93 }
catch (
const std::exception&) {
99 const unsigned char *txTo ,
unsigned int txToLen,
108 const unsigned char *txTo ,
unsigned int txToLen,
int64_t CAmount
Amount in satoshis (Can be negative)
static bool verify_flags(unsigned int flags)
Check that all specified flags are part of the libconsensus interface.
unsigned int bitcoinconsensus_version()
int bitcoinconsensus_verify_script(const unsigned char *scriptPubKey, unsigned int scriptPubKeyLen, const unsigned char *txTo, unsigned int txToLen, unsigned int nIn, unsigned int flags, bitcoinconsensus_error *err)
Returns 1 if the input nIn of the serialized transaction pointed to by txTo correctly spends the scri...
static int verify_script(const unsigned char *scriptPubKey, unsigned int scriptPubKeyLen, CAmount amount, const unsigned char *txTo, unsigned int txToLen, unsigned int nIn, unsigned int flags, bitcoinconsensus_error *err)
int bitcoinconsensus_verify_script_with_amount(const unsigned char *scriptPubKey, unsigned int scriptPubKeyLen, int64_t amount, const unsigned char *txTo, unsigned int txToLen, unsigned int nIn, unsigned int flags, bitcoinconsensus_error *err)
enum bitcoinconsensus_error_t bitcoinconsensus_error
@ bitcoinconsensus_ERR_OK
@ bitcoinconsensus_ERR_TX_DESERIALIZE
@ bitcoinconsensus_ERR_AMOUNT_REQUIRED
@ bitcoinconsensus_ERR_TX_INDEX
@ bitcoinconsensus_ERR_INVALID_FLAGS
@ bitcoinconsensus_ERR_TX_SIZE_MISMATCH
@ bitcoinconsensus_SCRIPT_FLAGS_VERIFY_ALL
@ bitcoinconsensus_SCRIPT_FLAGS_VERIFY_WITNESS
#define BITCOINCONSENSUS_API_VER
QDataStream & operator>>(QDataStream &in, BitcoinUnit &unit)
Serialized script, used inside transaction inputs and outputs.
The basic transaction that is broadcasted on the network and contained in blocks.
const std::vector< CTxIn > vin
A Span is an object that can refer to a contiguous sequence of objects.
constexpr std::size_t size() const noexcept
constexpr C * data() const noexcept
bool VerifyScript(const CScript &scriptSig, const CScript &scriptPubKey, const CScriptWitness *witness, unsigned int flags, const BaseSignatureChecker &checker, ScriptError *serror)
@ FAIL
Just act as if the signature was invalid.
constexpr deserialize_type deserialize
void Unserialize(Stream &, char)=delete
size_t GetSerializeSize(const T &t, int nVersion=0)
static const int PROTOCOL_VERSION
network protocol versioning