add missing 'complete' bool to psbt_updater_test

This commit is contained in:
Byron Hambly 2023-09-29 12:19:29 +02:00 committed by James Dorfman
parent 5af45ea185
commit 0c2fbefe98

View file

@ -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);
}