From e058152dd153a02e0b353a323fdb54b1adbbecb0 Mon Sep 17 00:00:00 2001 From: PastaClaw Date: Sun, 12 Jul 2026 10:46:29 -0500 Subject: [PATCH] test: make governance vote fixtures wire-valid --- src/test/governance_inv_tests.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/governance_inv_tests.cpp b/src/test/governance_inv_tests.cpp index a33fc7a516fb..d55c428e937a 100644 --- a/src/test/governance_inv_tests.cpp +++ b/src/test/governance_inv_tests.cpp @@ -155,6 +155,7 @@ CGovernanceVote MakeGovernanceVote(const uint256& parent_hash) { CGovernanceVote vote{COutPoint{uint256S("11"), 1}, parent_hash, VOTE_SIGNAL_FUNDING, VOTE_OUTCOME_YES}; vote.SetTime(GetTime().count()); + vote.SetSignature(std::vector(CGovernanceVote::COMPACT_SIG_SIZE)); return vote; }