Browse Source

remove debug printouts

blackjok3r
DeckerSU 6 years ago
parent
commit
aeeacfc4dd
  1. 4
      iguana/dpow/dpow_rpc.c
  2. 8
      iguana/dpow/dpow_tx.c

4
iguana/dpow/dpow_rpc.c

@ -648,8 +648,8 @@ char *dpow_signrawtransaction(struct supernet_info *myinfo,struct iguana_info *c
} }
//printf("%s signrawtransaction.(%s) params.(%s)\n",coin->symbol,retstr,paramstr); //printf("%s signrawtransaction.(%s) params.(%s)\n",coin->symbol,retstr,paramstr);
uint32_t zcash = (strcmp(coin->symbol, "VRSC") == 0 || strcmp(coin->symbol, "VRSCTEST") == 0); uint32_t zcash = (strcmp(coin->symbol, "VRSC") == 0 || strcmp(coin->symbol, "VRSCTEST") == 0);
if (zcash) /*if (zcash)
printf("[Decker] %s dpow_signrawtransaction.(%s) params.(%s)\n", coin->symbol, retstr, paramstr); printf("[Decker] %s dpow_signrawtransaction.(%s) params.(%s)\n", coin->symbol, retstr, paramstr);*/
free(paramstr); free(paramstr);
usleep(10000); usleep(10000);
return(retstr); return(retstr);

8
iguana/dpow/dpow_tx.c

@ -271,7 +271,7 @@ bits256 dpow_notarytx(struct supernet_info *myinfo,char *signedtx,int32_t *numsi
struct iguana_info *coin = (src_or_dest != 0) ? bp->destcoin : bp->srccoin; struct iguana_info *coin = (src_or_dest != 0) ? bp->destcoin : bp->srccoin;
uint32_t zcash = (strcmp(coin->symbol, "VRSC") == 0 || strcmp(coin->symbol, "VRSCTEST") == 0); uint32_t zcash = (strcmp(coin->symbol, "VRSC") == 0 || strcmp(coin->symbol, "VRSCTEST") == 0);
printf("[Decker] dpow_notarytx: src.(%s) dst.(%s) src_or_dest.(%d) usesigs.(%d)\n", bp->srccoin->symbol, bp->destcoin->symbol, src_or_dest, usesigs); //printf("[Decker] dpow_notarytx: src.(%s) dst.(%s) src_or_dest.(%d) usesigs.(%d)\n", bp->srccoin->symbol, bp->destcoin->symbol, src_or_dest, usesigs);
signedtx[0] = 0; signedtx[0] = 0;
*numsigsp = 0; *numsigsp = 0;
@ -304,7 +304,7 @@ bits256 dpow_notarytx(struct supernet_info *myinfo,char *signedtx,int32_t *numsi
{ {
if ( pubkeys != 0 && numratified > 0 ) // state [1] if ( pubkeys != 0 && numratified > 0 ) // state [1]
{ {
printf("[Decker] dpow_notarytx: state [1]\n"); //printf("[Decker] dpow_notarytx: state [1]\n");
if ( src_or_dest != 0 ) if ( src_or_dest != 0 )
{ {
txid = bp->notaries[k].ratifydestutxo; txid = bp->notaries[k].ratifydestutxo;
@ -325,7 +325,7 @@ bits256 dpow_notarytx(struct supernet_info *myinfo,char *signedtx,int32_t *numsi
} }
else // state [2] else // state [2]
{ {
printf("[Decker] dpow_notarytx: state [2]\n"); //printf("[Decker] dpow_notarytx: state [2]\n");
ep = &bp->notaries[k]; ep = &bp->notaries[k];
cp = (src_or_dest != 0) ? &bp->notaries[k].dest : &bp->notaries[k].src; cp = (src_or_dest != 0) ? &bp->notaries[k].dest : &bp->notaries[k].src;
if ( bits256_nonz(cp->prev_hash) == 0 ) if ( bits256_nonz(cp->prev_hash) == 0 )
@ -386,7 +386,7 @@ bits256 dpow_notarytx(struct supernet_info *myinfo,char *signedtx,int32_t *numsi
// here if usesigs=0 we have unsigned tx (not preimage), if usesigs=1 - we have signed tx with sigs from nn_bus network (?) // here if usesigs=0 we have unsigned tx (not preimage), if usesigs=1 - we have signed tx with sigs from nn_bus network (?)
init_hexbytes_noT(signedtx,serialized,len); init_hexbytes_noT(signedtx,serialized,len);
printf("[Decker] dpow_notarytx: signedtx.(%s)\n", signedtx); //printf("[Decker] dpow_notarytx: signedtx.(%s)\n", signedtx);
//printf("notarytx.(%s) opretlen.%d\n",signedtx,opretlen); //printf("notarytx.(%s) opretlen.%d\n",signedtx,opretlen);
if ( usesigs == 0 && bestk >= 0 ) if ( usesigs == 0 && bestk >= 0 )

Loading…
Cancel
Save