diff --git a/src/policy/policy.cpp b/src/policy/policy.cpp index 2918d49013..71f31226c2 100644 --- a/src/policy/policy.cpp +++ b/src/policy/policy.cpp @@ -139,13 +139,6 @@ bool IsStandardTx(const CTransaction& tx, std::string& reason) if (whichType == TX_NULL_DATA) { nDataOut++; - if (params.GetEnforcePak() && - txout.scriptPubKey.IsPegoutScript(params.ParentGenesisBlockHash()) && - txout.nAsset.IsExplicit() && txout.nAsset.GetAsset() == Params().GetConsensus().pegged_asset && - (!ScriptHasValidPAKProof(txout.scriptPubKey, params.ParentGenesisBlockHash()))) { - reason = "invalid-pegout-proof"; - return false; - } } else if ((whichType == TX_MULTISIG) && (!fIsBareMultisigStd)) { reason = "bare-multisig"; return false;