]> Git Repo - VerusCoin.git/commitdiff
Sign with branched
authorjl777 <[email protected]>
Mon, 23 Jul 2018 15:33:46 +0000 (04:33 -1100)
committerjl777 <[email protected]>
Mon, 23 Jul 2018 15:33:46 +0000 (04:33 -1100)
src/cc/CCtx.cpp

index 0b3906d8f540d2453d1efe20a73c36fda248d11a..022db7c81f752796c49b8dd3b64ed307adae6913 100644 (file)
@@ -40,6 +40,7 @@ bool SignTx(CMutableTransaction &mtx,int32_t vini,uint64_t utxovalue,const CScri
 
 std::string FinalizeCCTx(uint8_t evalcode,CMutableTransaction &mtx,CPubKey mypk,uint64_t txfee,CScript opret)
 {
+    auto consensusBranchId = CurrentEpochBranchId(chainActive.Height() + 1, Params().GetConsensus());
     CTransaction vintx; std::string hex; uint256 hashBlock; uint64_t vinimask=0,utxovalues[64],change,totaloutputs=0,totalinputs=0; int32_t i,utxovout,n,err = 0; char myaddr[64],destaddr[64],unspendable[64]; uint8_t *privkey,myprivkey[32],unspendablepriv[32],*msg32 = 0; CC *mycond=0,*othercond=0,*cond; CPubKey unspendablepk;
     n = mtx.vout.size();
     for (i=0; i<n; i++)
@@ -117,7 +118,7 @@ std::string FinalizeCCTx(uint8_t evalcode,CMutableTransaction &mtx,CPubKey mypk,
                     fprintf(stderr,"vini.%d has unknown CC address.(%s)\n",i,destaddr);
                     continue;
                 }
-                uint256 sighash = SignatureHash(CCPubKey(cond), mtx, i, SIGHASH_ALL, 0, 0, &txdata);
+                uint256 sighash = SignatureHash(CCPubKey(cond), mtx, i, SIGHASH_ALL, utxovalues[i],consensusBranchId, &txdata);
                 if ( cc_signTreeSecp256k1Msg32(cond,privkey,sighash.begin()) != 0 )
                 {
                     int32_t z; for (z=0; z<32; z++)
This page took 0.025495 seconds and 4 git commands to generate.