diff --git a/src/cc/StakeGuard.cpp b/src/cc/StakeGuard.cpp index 602ad6484..5e972ebf5 100644 --- a/src/cc/StakeGuard.cpp +++ b/src/cc/StakeGuard.cpp @@ -138,7 +138,6 @@ bool ValidateStakeTransaction(const CTransaction &stakeTx, CStakeParams &stakePa // a valid stake transaction has one input and two outputs, one output is the monetary value and one is an op_ret with CStakeParams // stake output #1 must be P2PK or P2PKH, unless a delegate for the coinbase is specified - if (GetStakeParams(stakeTx, stakeParams)) { // if we have gotten this far and are still valid, we need to validate everything else @@ -167,8 +166,8 @@ bool ValidateStakeTransaction(const CTransaction &stakeTx, CStakeParams &stakePa if (!validateSig || VerifyScript(stakeTx.vin[0].scriptSig, srcTx.vout[stakeTx.vin[0].prevout.n].scriptPubKey, - MANDATORY_SCRIPT_VERIFY_FLAGS, - ServerTransactionSignatureChecker(&stakeTx, (uint32_t)0, srcTx.vout[stakeTx.vin[0].prevout.n].nValue, false), + MANDATORY_SCRIPT_VERIFY_FLAGS, + TransactionSignatureChecker(&stakeTx, (uint32_t)0, srcTx.vout[stakeTx.vin[0].prevout.n].nValue), consensusBranchId)) { return true; diff --git a/src/komodo_bitcoind.h b/src/komodo_bitcoind.h index 23110724f..4943267e7 100644 --- a/src/komodo_bitcoind.h +++ b/src/komodo_bitcoind.h @@ -1641,6 +1641,7 @@ bool verusCheckPOSBlock(int32_t slowflag, CBlock *pblock, int32_t height) // allow delegation of stake, but require all ouputs to be // crypto conditions CStakeParams p; + // validatestake transaction sets the pubkey of the stake output // if it has no override into the pubkey if (ValidateStakeTransaction(pblock->vtx[txn_count-1], p, false))