Files
thehub/testing/bitcoin-protocol/script_P2SH_tests.h
JohnGaltBCH 96f036e78d script: enable Upgrade9 P2SH32 validation
Adds the SCRIPT_ENABLE_P2SH_32 script flag and applies it at the existing May 2023 activation point
2026-05-07 15:29:55 +02:00

36 lines
1.0 KiB
C++

/*
* This file is part of the Flowee project
* Copyright (C) 2018 Tom Zander <tom@flowee.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SCRIPT_P2SH_H
#define SCRIPT_P2SH_H
#include <common/TestFloweeSession.h>
class TestPaymentToScriptHash : public TestFloweeSession
{
Q_OBJECT
private slots:
void norecurse();
void set();
void is();
void p2sh32();
void switchover();
void AreInputsStandard();
};
#endif