diff --git a/src/Makefile.test.include b/src/Makefile.test.include index a293241cb5..64810ba456 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -221,7 +221,6 @@ BITCOIN_TESTS =\ test/bech32_tests.cpp \ test/bip32_tests.cpp \ test/blockchain_tests.cpp \ - test/blockencodings_tests.cpp \ test/blockfilter_tests.cpp \ test/blockfilter_index_tests.cpp \ test/bloom_tests.cpp \ diff --git a/src/qt/test/rpcnestedtests.cpp b/src/qt/test/rpcnestedtests.cpp index de1fbcb94c..409eff2275 100644 --- a/src/qt/test/rpcnestedtests.cpp +++ b/src/qt/test/rpcnestedtests.cpp @@ -69,7 +69,7 @@ void RPCNestedTests::rpcNestedTests() QVERIFY(result == result2); RPCConsole::RPCExecuteCommandLine(*node, result, "getblock(getbestblockhash())[tx][0]", &filtered); - QVERIFY(result == "4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"); + QVERIFY(result == "97ddfbbae6be97fd6cdf3e7ca13232a3afff2353e29badfab7f73011edd4ced9"); QVERIFY(filtered == "getblock(getbestblockhash())[tx][0]"); RPCConsole::RPCParseCommandLine(nullptr, result, "importprivkey", false, &filtered); diff --git a/src/qt/test/wallettests.cpp b/src/qt/test/wallettests.cpp index dfee83f2a3..ea39a52d5a 100644 --- a/src/qt/test/wallettests.cpp +++ b/src/qt/test/wallettests.cpp @@ -236,7 +236,7 @@ void TestGUI(interfaces::Node& node) QCOMPARE(receiveRequestDialog->QObject::findChild("payment_header")->text(), QString("Payment information")); QCOMPARE(receiveRequestDialog->QObject::findChild("uri_tag")->text(), QString("URI:")); QString uri = receiveRequestDialog->QObject::findChild("uri_content")->text(); - QCOMPARE(uri.count("bitcoin:"), 2); + QCOMPARE(uri.count("litecoin:"), 2); QCOMPARE(receiveRequestDialog->QObject::findChild("address_tag")->text(), QString("Address:")); QCOMPARE(uri.count("amount=0.00000001"), 2); diff --git a/src/test/amount_tests.cpp b/src/test/amount_tests.cpp index c16519a6b1..8d515cda37 100644 --- a/src/test/amount_tests.cpp +++ b/src/test/amount_tests.cpp @@ -107,8 +107,8 @@ BOOST_AUTO_TEST_CASE(ToStringTest) { CFeeRate feeRate; feeRate = CFeeRate(1); - BOOST_CHECK_EQUAL(feeRate.ToString(), "0.00000001 BTC/kvB"); - BOOST_CHECK_EQUAL(feeRate.ToString(FeeEstimateMode::BTC_KVB), "0.00000001 BTC/kvB"); + BOOST_CHECK_EQUAL(feeRate.ToString(), "0.00000001 LTC/kvB"); + BOOST_CHECK_EQUAL(feeRate.ToString(FeeEstimateMode::BTC_KVB), "0.00000001 LTC/kvB"); BOOST_CHECK_EQUAL(feeRate.ToString(FeeEstimateMode::SAT_VB), "0.001 sat/vB"); }