From d6fe579a234b3a9aef2996ce5268654a67d58605 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 23 Jul 2018 06:54:00 -1100 Subject: [PATCH] Remove excess vout in create asset --- src/cc/CCassetstx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc/CCassetstx.cpp b/src/cc/CCassetstx.cpp index 7c290ff56..4f31f9160 100644 --- a/src/cc/CCassetstx.cpp +++ b/src/cc/CCassetstx.cpp @@ -105,7 +105,7 @@ std::string CreateAsset(uint64_t txfee,uint64_t assetsupply,std::string name,std if ( AddNormalinputs(mtx,mypk,assetsupply+2*txfee,64) > 0 ) { mtx.vout.push_back(MakeAssetsVout(assetsupply,mypk)); - mtx.vout.push_back(CTxOut(txfee,CScript() << ParseHex(AssetsCChexstr) << OP_CHECKSIG)); + //mtx.vout.push_back(CTxOut(txfee,CScript() << ParseHex(AssetsCChexstr) << OP_CHECKSIG)); return(FinalizeCCTx(EVAL_ASSETS,mtx,mypk,txfee,EncodeAssetCreateOpRet('c',Mypubkey(),name,description))); } return(0);