aboutsummaryrefslogtreecommitdiff
path: root/src/test/util.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-04-10 14:57:19 -0400
committerMarcoFalke <falke.marco@gmail.com>2019-04-10 15:59:11 -0400
commitfa8685d49ed8e52b1220a89f669dac63bef172bc (patch)
treed3b1da72395a33e7b7053ddbac1789502225b0b2 /src/test/util.h
parent666696b673c5d3b7ab467a890cafd13ac19be503 (diff)
test: Use test_bitcoin setup in bench, Add test utils
Diffstat (limited to 'src/test/util.h')
-rw-r--r--src/test/util.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/test/util.h b/src/test/util.h
new file mode 100644
index 0000000000..e51e924f65
--- /dev/null
+++ b/src/test/util.h
@@ -0,0 +1,34 @@
+// Copyright (c) 2019 The Bitcoin Core developers
+// Distributed under the MIT software license, see the accompanying
+// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+
+#ifndef BITCOIN_TEST_UTIL_H
+#define BITCOIN_TEST_UTIL_H
+
+#include <memory>
+#include <string>
+
+class CBlock;
+class CScript;
+class CTxIn;
+class CWallet;
+
+// Lower-level utils //
+
+/** Returns the generated coin */
+CTxIn MineBlock(const CScript& coinbase_scriptPubKey);
+/** Prepare a block to be mined */
+std::shared_ptr<CBlock> PrepareBlock(const CScript& coinbase_scriptPubKey);
+
+
+// RPC-like //
+
+/** Import the address to the wallet */
+void importaddress(CWallet& wallet, const std::string& address);
+/** Returns a new address from the wallet */
+std::string getnewaddress(CWallet& w);
+/** Returns the generated coin */
+CTxIn generatetoaddress(const std::string& address);
+
+
+#endif // BITCOIN_TEST_UTIL_H