From a16533f11b1d3c53abefa65c4ebdaf25a899ba90 Mon Sep 17 00:00:00 2001 From: Krystie Date: Sun, 10 May 2026 02:03:52 -0700 Subject: [PATCH] Fix accounting test wallet pointer usage --- src/test/accounting_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/accounting_tests.cpp b/src/test/accounting_tests.cpp index 5c65d1f..a3c5454 100644 --- a/src/test/accounting_tests.cpp +++ b/src/test/accounting_tests.cpp @@ -13,7 +13,7 @@ GetResults(CWalletDB& walletdb, std::map& results) std::list aes; results.clear(); - BOOST_CHECK(walletdb.ReorderTransactions(pwalletMain) == DB_LOAD_OK); + BOOST_CHECK(walletdb.ReorderTransactions(pwalletMain.get()) == DB_LOAD_OK); walletdb.ListAccountCreditDebit("", aes); for (CAccountingEntry& ae : aes) {