Files
thehub/testing/common/TestFloweeEnvPlusNet.h
T
TomZ cfe690320d Move various standalone simple classes into utils
The 'server' library has always been a catch-all and
ideally only the hub links it in (far future goal).
In line with this I move a list of files out of server
into the utils lib.
I choose 'utils' because all these are plain old data
objects that many crypto apps will find useful.

now in utils/primitives/
* CScript
* CPubKey
* CTransaction
* CBlock
* FastTransaction
* FastBlock
* CScript

streams.h is now in utils/streaming/
hash.h is now in utils/
2019-03-11 15:40:42 +01:00

39 lines
1.2 KiB
C++

/*
* This file is part of the Flowee project
* Copyright (c) 2015 The Bitcoin Core developers
* Copyright (C) 2017 Tom Zander <tomz@freedommail.ch>
*
* 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 BASICTESTINGSETUP_H
#define BASICTESTINGSETUP_H
#include "TestFloweeBase.h"
#include <chainparamsbase.h>
#include <primitives/pubkey.h>
class TestFloweeEnvPlusNet : public TestFloweeBase
{
Q_OBJECT
public:
ECCVerifyHandle globalVerifyHandle;
TestFloweeEnvPlusNet(const std::string& chainName = CBaseChainParams::MAIN);
~TestFloweeEnvPlusNet();
};
#endif