f53daa79f6
This removes the transaction-signing code from the hub internal codebase. The only user for this was the API call signrawtransaction, and a lot of unit testing code. I'd argue that if the user needs to send a private key to the hub via RPC for signing his transaction, then they are doing it wrong. This also removes the duplicate test double_spend which tests functionality also tested in the DoubleSpendProofTest. As an aside, the flowee/utils library still has full signing capability and we suggest using the TransactionBuilder API for that.
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
/*
|
|
* This file is part of the Flowee project
|
|
* Copyright (C) 2011-2013 The Bitcoin Core developers
|
|
* Copyright (C) 2019 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 MULTISIG_TESTS_H
|
|
#define MULTISIG_TESTS_H
|
|
#include <common/TestFloweeEnvPlusNet.h>
|
|
|
|
class MultiSigTests : public TestFloweeEnvPlusNet
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void multisig_verify();
|
|
void multisig_IsStandard();
|
|
void multisig_Solver1();
|
|
};
|
|
|
|
#endif
|