![]() |
PIVX Core
5.6.99
P2P Digital Currency
|
#include "core_io.h"#include "key_io.h"#include "primitives/transaction.h"#include "script/script.h"#include "script/standard.h"#include "sapling/sapling_core_write.h"#include "serialize.h"#include "streams.h"#include <univalue.h>#include "util/system.h"#include "utilmoneystr.h"#include "utilstrencodings.h"Go to the source code of this file.
Functions | |
| std::string | FormatScript (const CScript &script) |
| 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) |
| void | ScriptPubKeyToUniv (const CScript &scriptPubKey, UniValue &out, bool fIncludeHex) |
| void | TxToUniv (const CTransaction &tx, const uint256 &hashBlock, UniValue &entry) |
Variables | |
| const std::map< unsigned char, std::string > | mapSigHashTypes |
| std::string EncodeHexTx | ( | const CTransaction & | tx | ) |
| std::string FormatScript | ( | const CScript & | script | ) |
Definition at line 123 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 72 of file core_write.cpp.
| void TxToUniv | ( | const CTransaction & | tx, |
| const uint256 & | hashBlock, | ||
| UniValue & | entry | ||
| ) |
Definition at line 166 of file core_write.cpp.
| const std::map<unsigned char, std::string> mapSigHashTypes |
Definition at line 56 of file core_write.cpp.