aboutsummaryrefslogtreecommitdiff
path: root/src/qt/test
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2018-09-30 15:38:37 +0100
committerRoss Nicoll <[email protected]>2019-04-03 05:16:26 +0000
commit8ef665d5e4765366b1c47a2ce7054d783ccca9d0 (patch)
treeeb4deddbdbf40cc6e328dc88d3ae21d76332da9a /src/qt/test
parentAdd Dogecoin block subsidy calculations. (diff)
downloaddiscoin-8ef665d5e4765366b1c47a2ce7054d783ccca9d0.tar.xz
discoin-8ef665d5e4765366b1c47a2ce7054d783ccca9d0.zip
Replace test data with Dogecoin values
Replace test data with Dogecoin equivalents in the folowing tests: * base58 * bip32 * keys * miner * pow * wallet Replace RPC and deterministic signatures in unit tests with Dogecoin values. While conventionally I'd use an alternative implementation for these, as RFC 6979 compliant signature generation isn't terribly common, and there's no reason to suspect we've modified this code, I'm going to assert that it's good enough to test that the code doesn't provide different values. Disabled Bitcoin PoW tests, but left code in place to simplify later merges. These are replaced by the Dogecoin PoW tests.
Diffstat (limited to 'src/qt/test')
-rw-r--r--src/qt/test/wallettests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/test/wallettests.cpp b/src/qt/test/wallettests.cpp
index 9598d6484..a5b9dd722 100644
--- a/src/qt/test/wallettests.cpp
+++ b/src/qt/test/wallettests.cpp
@@ -129,7 +129,7 @@ void BumpFee(TransactionView& view, const uint256& txid, bool expectDisabled, st
void TestGUI()
{
// Set up wallet and chain with 105 blocks (5 mature blocks for spending).
- TestChain100Setup test;
+ TestChain240Setup test;
for (int i = 0; i < 5; ++i) {
test.CreateAndProcessBlock({}, GetScriptForRawPubKey(test.coinbaseKey.GetPubKey()));
}