2018-01-03 02:12:05 +09:00
|
|
|
// Copyright (c) 2016-2017 The Bitcoin Core developers
|
2016-08-20 11:19:35 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_QT_TEST_RPC_NESTED_TESTS_H
|
|
|
|
#define BITCOIN_QT_TEST_RPC_NESTED_TESTS_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QTest>
|
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <txdb.h>
|
|
|
|
#include <txmempool.h>
|
2016-08-20 11:19:35 +02:00
|
|
|
|
|
|
|
class RPCNestedTests : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void rpcNestedTests();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BITCOIN_QT_TEST_RPC_NESTED_TESTS_H
|