Bitcoin ABC 0.30.5
P2P Digital Currency
|
#include <core_io.h>
#include <common/system.h>
#include <config.h>
#include <consensus/amount.h>
#include <key_io.h>
#include <primitives/blockhash.h>
#include <primitives/transaction.h>
#include <script/script.h>
#include <script/sigencoding.h>
#include <script/standard.h>
#include <serialize.h>
#include <streams.h>
#include <undo.h>
#include <util/check.h>
#include <util/strencodings.h>
#include <univalue.h>
Go to the source code of this file.
Functions | |
std::string | FormatScript (const CScript &script) |
std::string | SighashToStr (uint8_t sighash_type) |
std::string | ScriptToAsmStr (const CScript &script, const bool fAttemptSighashDecode) |
Create the assembly string representation of a CScript object. More... | |
std::string | EncodeHexTx (const CTransaction &tx, const int serializeFlags) |
void | ScriptToUniv (const CScript &script, UniValue &out, bool include_address) |
void | ScriptPubKeyToUniv (const CScript &scriptPubKey, UniValue &out, bool fIncludeHex) |
void | TxToUniv (const CTransaction &tx, const BlockHash &hashBlock, UniValue &entry, bool include_hex, int serialize_flags, const CTxUndo *txundo) |
Variables | |
const std::map< uint8_t, std::string > | mapSigHashTypes |
std::string EncodeHexTx | ( | const CTransaction & | tx, |
const int | serializeFlags | ||
) |
Definition at line 169 of file core_write.cpp.
std::string FormatScript | ( | const CScript & | script | ) |
Definition at line 24 of file core_write.cpp.
Definition at line 190 of file core_write.cpp.
std::string ScriptToAsmStr | ( | const CScript & | script, |
const bool | fAttemptSighashDecode | ||
) |
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, | ||
int | serialize_flags, | ||
const CTxUndo * | txundo | ||
) |
Definition at line 217 of file core_write.cpp.
const std::map<uint8_t, std::string> mapSigHashTypes |
Definition at line 71 of file core_write.cpp.