aboutsummaryrefslogtreecommitdiff
path: root/src/core_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core_io.h')
-rw-r--r--src/core_io.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core_io.h b/src/core_io.h
index be93a17efe..b545d0b59e 100644
--- a/src/core_io.h
+++ b/src/core_io.h
@@ -20,6 +20,14 @@ class uint256;
class UniValue;
class CTxUndo;
+/**
+ * Verbose level for block's transaction
+ */
+enum class TxVerbosity {
+ SHOW_TXID, //!< Only TXID for each block's transaction
+ SHOW_DETAILS //!< Include TXID, inputs, outputs, and other common block's transaction information
+};
+
// core_read.cpp
CScript ParseScript(const std::string& s);
std::string ScriptToAsmStr(const CScript& script, const bool fAttemptSighashDecode = false);