diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-08-27 15:21:07 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-09-16 18:52:49 +0200 |
commit | fadb2ef2fa8561882db463f35df9b8a0e9609658 (patch) | |
tree | 92149d50f1303a2b864f87970938521deb4d94b4 /src/test/util | |
parent | faa46986aaec69e4cf016101ae517ce8778e2ac5 (diff) |
test: Add extra_args argument to TestChain100Setup constructor
This will be needed in a later commit.
Diffstat (limited to 'src/test/util')
-rw-r--r-- | src/test/util/setup_common.cpp | 3 | ||||
-rw-r--r-- | src/test/util/setup_common.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/test/util/setup_common.cpp b/src/test/util/setup_common.cpp index 3d8bd471da..74dcefe076 100644 --- a/src/test/util/setup_common.cpp +++ b/src/test/util/setup_common.cpp @@ -205,7 +205,8 @@ TestingSetup::TestingSetup(const std::string& chainName, const std::vector<const } } -TestChain100Setup::TestChain100Setup() +TestChain100Setup::TestChain100Setup(const std::vector<const char*>& extra_args) + : TestingSetup{CBaseChainParams::REGTEST, extra_args} { SetMockTime(1598887952); constexpr std::array<unsigned char, 32> vchKey = { diff --git a/src/test/util/setup_common.h b/src/test/util/setup_common.h index 118ac62290..abc87bb69c 100644 --- a/src/test/util/setup_common.h +++ b/src/test/util/setup_common.h @@ -113,8 +113,8 @@ class CScript; /** * Testing fixture that pre-creates a 100-block REGTEST-mode block chain */ -struct TestChain100Setup : public RegTestingSetup { - TestChain100Setup(); +struct TestChain100Setup : public TestingSetup { + TestChain100Setup(const std::vector<const char*>& extra_args = {}); /** * Create a new block with just given transactions, coinbase paying to |