From 0c2fbefe9897e2fd09a0a8ad835658d9f3692bb7 Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Fri, 29 Sep 2023 12:19:29 +0200 Subject: [PATCH] add missing 'complete' bool to psbt_updater_test --- src/wallet/test/psbt_wallet_tests.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wallet/test/psbt_wallet_tests.cpp b/src/wallet/test/psbt_wallet_tests.cpp index cae1a02219..76ef090007 100644 --- a/src/wallet/test/psbt_wallet_tests.cpp +++ b/src/wallet/test/psbt_wallet_tests.cpp @@ -65,6 +65,7 @@ BOOST_AUTO_TEST_CASE(psbt_updater_test) // Try to sign the mutated input SignatureData sigdata; + bool complete = true; BOOST_CHECK(m_wallet.FillPSBT(psbtx, complete, SIGHASH_ALL, true, true) != TransactionError::OK); //BOOST_CHECK(spk_man->FillPSBT(psbtx, PrecomputePSBTData(psbtx), SIGHASH_ALL, true, true) != TransactionError::OK); }