This commit is contained in:
jl777
2019-07-08 00:13:05 -11:00
parent ddd2f1fb0e
commit aac97b5099
2 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,6 @@
******************************************************************************/ ******************************************************************************/
// todo: // todo:
// make sure no files are updated (this is to allow nSPV=1 and later nSPV=0 without affecting database)
// pubkeys extract // pubkeys extract
// headers "sync" // headers "sync"
@@ -23,6 +22,7 @@
// need to validate incoming data and update only if it is valid and more recent // need to validate incoming data and update only if it is valid and more recent
// make sure to sanity check all vector lengths on receipt // make sure to sanity check all vector lengths on receipt
// make sure no files are updated (this is to allow nSPV=1 and later nSPV=0 without affecting database)
#ifndef KOMODO_NSPV_H #ifndef KOMODO_NSPV_H
#define KOMODO_NSPV_H #define KOMODO_NSPV_H

View File

@@ -111,11 +111,11 @@ int64_t NSPV_addinputs(struct NSPV_utxoresp *used,CMutableTransaction &mtx,int64
remains -= up->satoshis; remains -= up->satoshis;
utxos[ind] = utxos[--n]; utxos[ind] = utxos[--n];
memset(&utxos[n],0,sizeof(utxos[n])); memset(&utxos[n],0,sizeof(utxos[n]));
//fprintf(stderr,"totalinputs %.8f vs total %.8f i.%d vs max.%d\n",(double)totalinputs/COIN,(double)total/COIN,i,maxinputs); fprintf(stderr,"totalinputs %.8f vs total %.8f i.%d vs max.%d\n",(double)totalinputs/COIN,(double)total/COIN,i,maxinputs);
if ( totalinputs >= total || (i+1) >= maxinputs ) if ( totalinputs >= total || (i+1) >= maxinputs )
break; break;
} }
//fprintf(stderr,"totalinputs %.8f vs total %.8f\n",(double)totalinputs/COIN,(double)total/COIN); fprintf(stderr,"totalinputs %.8f vs total %.8f\n",(double)totalinputs/COIN,(double)total/COIN);
if ( totalinputs >= total ) if ( totalinputs >= total )
return(totalinputs); return(totalinputs);
return(0); return(0);