aboutsummaryrefslogtreecommitdiff
path: root/src/policy/policy.h
diff options
context:
space:
mode:
authorJohnson Lau <jl2012@users.noreply.github.com>2016-07-20 18:31:45 +0800
committerWladimir J. van der Laan <laanwj@gmail.com>2016-07-26 14:25:28 +0200
commitf84ee3dab66831383e58c7de3fabc306754633db (patch)
treee0e0df62fd11e02833beb1044ce695593a6e9c62 /src/policy/policy.h
parent86edc20a178cc17cdc6915e9e93a7241c27c368c (diff)
downloadbitcoin-f84ee3dab66831383e58c7de3fabc306754633db.tar.xz
Make witness v0 outputs non-standard before segwit activation
Github-Pull: #8381 Rebased-From: 1ffaff2f747af683513d6d74a7241d41e3f6e051
Diffstat (limited to 'src/policy/policy.h')
-rw-r--r--src/policy/policy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/policy/policy.h b/src/policy/policy.h
index f5f8652fb5..ad209d0306 100644
--- a/src/policy/policy.h
+++ b/src/policy/policy.h
@@ -53,12 +53,12 @@ static const unsigned int STANDARD_NOT_MANDATORY_VERIFY_FLAGS = STANDARD_SCRIPT_
static const unsigned int STANDARD_LOCKTIME_VERIFY_FLAGS = LOCKTIME_VERIFY_SEQUENCE |
LOCKTIME_MEDIAN_TIME_PAST;
-bool IsStandard(const CScript& scriptPubKey, txnouttype& whichType);
+bool IsStandard(const CScript& scriptPubKey, txnouttype& whichType, const bool witnessEnabled = false);
/**
* Check for standard transaction types
* @return True if all outputs (scriptPubKeys) use only standard transaction forms
*/
-bool IsStandardTx(const CTransaction& tx, std::string& reason);
+bool IsStandardTx(const CTransaction& tx, std::string& reason, const bool witnessEnabled = false);
/**
* Check for standard transaction types
* @param[in] mapInputs Map of previous transactions that have outputs we're spending