We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e82e2f5 commit ffac2a7Copy full SHA for ffac2a7
src/rpc/budget.cpp
@@ -733,7 +733,9 @@ UniValue mnbudgetrawvote(const UniValue& params, bool fHelp)
733
vote.SetVchSig(vchSig);
734
735
if (!vote.CheckSignature(true)) {
736
- return "Failure to verify signature.";
+ // try old message version
737
+ vote.nMessVersion = MessageVersion::MESS_VER_STRMESS;
738
+ if (!vote.CheckSignature(true)) return "Failure to verify signature.";
739
}
740
741
std::string strError = "";
0 commit comments