diff options
author | Michael Dietz <michael.dietz@waya.ai> | 2021-05-10 15:23:39 -0400 |
---|---|---|
committer | Michael Dietz <michael.dietz@waya.ai> | 2021-09-24 14:22:53 -0500 |
commit | 2b1fdc2c6ce1d0b0e51a3f107e23443c142d57af (patch) | |
tree | 145af33ce09130fcc19eaf49a43047430fb12321 /src/core_io.h | |
parent | d64deac7b823a0eba97ab3a3686054eefe330d3c (diff) |
refactor: minor styling, prefer snake case and same line if
Diffstat (limited to 'src/core_io.h')
-rw-r--r-- | src/core_io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core_io.h b/src/core_io.h index dec0297637..f00f155249 100644 --- a/src/core_io.h +++ b/src/core_io.h @@ -44,7 +44,7 @@ UniValue ValueFromAmount(const CAmount amount); std::string FormatScript(const CScript& script); std::string EncodeHexTx(const CTransaction& tx, const int serializeFlags = 0); std::string SighashToStr(unsigned char sighash_type); -void ScriptPubKeyToUniv(const CScript& scriptPubKey, UniValue& out, bool fIncludeHex, bool include_address = true); +void ScriptPubKeyToUniv(const CScript& scriptPubKey, UniValue& out, bool include_hex, bool include_address = true); void ScriptToUniv(const CScript& script, UniValue& out); void TxToUniv(const CTransaction& tx, const uint256& hashBlock, UniValue& entry, bool include_hex = true, int serialize_flags = 0, const CTxUndo* txundo = nullptr); |