Bitcoin ABC 0.26.3
P2P Digital Currency
|
Go to the source code of this file.
Definition at line 232 of file core_read.cpp.
bool DecodeHexBlockHeader | ( | CBlockHeader & | header, |
const std::string & | hex_header | ||
) |
Definition at line 217 of file core_read.cpp.
bool DecodeHexTx | ( | CMutableTransaction & | tx, |
const std::string & | strHexTx | ||
) |
Definition at line 197 of file core_read.cpp.
std::string EncodeHexTx | ( | const CTransaction & | tx, |
const int | serializeFlags = 0 |
||
) |
Definition at line 169 of file core_write.cpp.
std::string FormatScript | ( | const CScript & | script | ) |
Definition at line 24 of file core_write.cpp.
Parse a hex string into 256 bits.
[in] | strHex | a hex-formatted, 64-character string |
[out] | result | the result of the parasing |
Definition at line 248 of file core_read.cpp.
std::vector< uint8_t > ParseHexUV | ( | const UniValue & | v, |
const std::string & | strName | ||
) |
Definition at line 257 of file core_read.cpp.
CScript ParseScript | ( | const std::string & | s | ) |
Definition at line 60 of file core_read.cpp.
SigHashType ParseSighashString | ( | const UniValue & | sighash | ) |
Definition at line 271 of file core_read.cpp.
Definition at line 190 of file core_write.cpp.
Create the assembly string representation of a CScript object.
[in] | script | CScript object to convert into the asm string representation. |
[in] | fAttemptSighashDecode | Whether to attempt to decode sighash types on data within the script that matches the format of a signature. Only pass true for scripts you believe could contain signatures. For example, pass false, or omit the this argument (defaults to false), for scriptPubKeys. |
Definition at line 106 of file core_write.cpp.
Definition at line 175 of file core_write.cpp.
std::string SighashToStr | ( | uint8_t | sighash_type | ) |
void TxToUniv | ( | const CTransaction & | tx, |
const BlockHash & | hashBlock, | ||
UniValue & | entry, | ||
bool | include_hex = true , |
||
int | serialize_flags = 0 , |
||
const CTxUndo * | txundo = nullptr |
||
) |
Definition at line 217 of file core_write.cpp.