1 /******************************************************************************
2 * Copyright © 2014-2017 The SuperNET Developers. *
4 * See the AUTHORS, DEVELOPER-AGREEMENT and LICENSE files at *
5 * the top-level directory of this distribution for the individual copyright *
6 * holder information and the developer policies on copyright and licensing. *
8 * Unless otherwise agreed in a custom licensing agreement, no part of the *
9 * SuperNET software, including this file may be copied, modified, propagated *
10 * or distributed except according to the terms contained in the LICENSE file *
12 * Removal or modification of this copyright notice is prohibited. *
14 ******************************************************************************/
16 // komodo functions that interact with bitcoind C++
19 #include <curl/curl.h>
20 #include <curl/easy.h>
22 #include <curl/curl.h>
23 #include <curl/easy.h>
26 #include "komodo_defs.h"
28 //#define issue_curl(cmdstr) bitcoind_RPC(0,(char *)"curl",(char *)"http://127.0.0.1:7776",0,0,(char *)(cmdstr))
30 struct MemoryStruct { char *memory; size_t size; };
31 struct return_string { char *ptr; size_t len; };
33 // return data from the server
34 #define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL|CURL_GLOBAL_WIN32)
35 #define CURL_GLOBAL_SSL (1<<0)
36 #define CURL_GLOBAL_WIN32 (1<<1)
39 /************************************************************************
41 * Initialize the string handler so that it is thread safe
43 ************************************************************************/
45 void init_string(struct return_string *s)
48 s->ptr = (char *)calloc(1,s->len+1);
51 fprintf(stderr,"init_string malloc() failed\n");
57 /************************************************************************
59 * Use the "writer" to accumulate text until done
61 ************************************************************************/
63 size_t accumulatebytes(void *ptr,size_t size,size_t nmemb,struct return_string *s)
65 size_t new_len = s->len + size*nmemb;
66 s->ptr = (char *)realloc(s->ptr,new_len+1);
69 fprintf(stderr, "accumulate realloc() failed\n");
72 memcpy(s->ptr+s->len,ptr,size*nmemb);
73 s->ptr[new_len] = '\0';
78 /************************************************************************
80 * return the current system time in milliseconds
82 ************************************************************************/
84 #define EXTRACT_BITCOIND_RESULT // if defined, ensures error is null and returns the "result" field
85 #ifdef EXTRACT_BITCOIND_RESULT
87 /************************************************************************
89 * perform post processing of the results
91 ************************************************************************/
93 char *post_process_bitcoind_RPC(char *debugstr,char *command,char *rpcstr,char *params)
95 long i,j,len; char *retstr = 0; cJSON *json,*result,*error;
96 //printf("<<<<<<<<<<< bitcoind_RPC: %s post_process_bitcoind_RPC.%s.[%s]\n",debugstr,command,rpcstr);
97 if ( command == 0 || rpcstr == 0 || rpcstr[0] == 0 )
99 if ( strcmp(command,"signrawtransaction") != 0 )
100 printf("<<<<<<<<<<< bitcoind_RPC: %s post_process_bitcoind_RPC.%s.[%s]\n",debugstr,command,rpcstr);
103 json = cJSON_Parse(rpcstr);
106 printf("<<<<<<<<<<< bitcoind_RPC: %s post_process_bitcoind_RPC.%s can't parse.(%s) params.(%s)\n",debugstr,command,rpcstr,params);
110 result = cJSON_GetObjectItem(json,"result");
111 error = cJSON_GetObjectItem(json,"error");
112 if ( error != 0 && result != 0 )
114 if ( (error->type&0xff) == cJSON_NULL && (result->type&0xff) != cJSON_NULL )
116 retstr = cJSON_Print(result);
117 len = strlen(retstr);
118 if ( retstr[0] == '"' && retstr[len-1] == '"' )
120 for (i=1,j=0; i<len-1; i++,j++)
121 retstr[j] = retstr[i];
125 else if ( (error->type&0xff) != cJSON_NULL || (result->type&0xff) != cJSON_NULL )
127 if ( strcmp(command,"signrawtransaction") != 0 )
128 printf("<<<<<<<<<<< bitcoind_RPC: %s post_process_bitcoind_RPC (%s) error.%s\n",debugstr,command,rpcstr);
131 } else retstr = rpcstr;
133 //fprintf(stderr,"<<<<<<<<<<< bitcoind_RPC: postprocess returns.(%s)\n",retstr);
138 /************************************************************************
142 ************************************************************************/
144 char *bitcoind_RPC(char **retstrp,char *debugstr,char *url,char *userpass,char *command,char *params)
146 static int didinit,count,count2; static double elapsedsum,elapsedsum2;
147 struct curl_slist *headers = NULL; struct return_string s; CURLcode res; CURL *curl_handle;
148 char *bracket0,*bracket1,*databuf = 0; long len; int32_t specialcase,numretries; double starttime;
152 curl_global_init(CURL_GLOBAL_ALL); //init the curl session
155 if ( debugstr != 0 && strcmp(debugstr,"BTCD") == 0 && command != 0 && strcmp(command,"SuperNET") == 0 )
157 else specialcase = 0;
159 strcpy(url,"http://127.0.0.1:7876/nxt");
160 if ( specialcase != 0 && 0 )
161 printf("<<<<<<<<<<< bitcoind_RPC: debug.(%s) url.(%s) command.(%s) params.(%s)\n",debugstr,url,command,params);
165 starttime = OS_milliseconds();
166 curl_handle = curl_easy_init();
168 headers = curl_slist_append(0,"Expect:");
170 curl_easy_setopt(curl_handle,CURLOPT_USERAGENT,"mozilla/4.0");//"Mozilla/4.0 (compatible; )");
171 curl_easy_setopt(curl_handle,CURLOPT_HTTPHEADER, headers);
172 curl_easy_setopt(curl_handle,CURLOPT_URL, url);
173 curl_easy_setopt(curl_handle,CURLOPT_WRITEFUNCTION, (void *)accumulatebytes); // send all data to this function
174 curl_easy_setopt(curl_handle,CURLOPT_WRITEDATA, &s); // we pass our 's' struct to the callback
175 curl_easy_setopt(curl_handle,CURLOPT_NOSIGNAL, 1L); // supposed to fix "Alarm clock" and long jump crash
176 curl_easy_setopt(curl_handle,CURLOPT_NOPROGRESS, 1L); // no progress callback
177 if ( strncmp(url,"https",5) == 0 )
179 curl_easy_setopt(curl_handle,CURLOPT_SSL_VERIFYPEER,0);
180 curl_easy_setopt(curl_handle,CURLOPT_SSL_VERIFYHOST,0);
183 curl_easy_setopt(curl_handle,CURLOPT_USERPWD, userpass);
187 if ( command != 0 && specialcase == 0 )
189 len = strlen(params);
190 if ( len > 0 && params[0] == '[' && params[len-1] == ']' ) {
191 bracket0 = bracket1 = (char *)"";
195 bracket0 = (char *)"[";
196 bracket1 = (char *)"]";
199 databuf = (char *)malloc(256 + strlen(command) + strlen(params));
200 sprintf(databuf,"{\"id\":\"jl777\",\"method\":\"%s\",\"params\":%s%s%s}",command,bracket0,params,bracket1);
201 //printf("url.(%s) userpass.(%s) databuf.(%s)\n",url,userpass,databuf);
203 } //else if ( specialcase != 0 ) fprintf(stderr,"databuf.(%s)\n",params);
204 curl_easy_setopt(curl_handle,CURLOPT_POST,1L);
206 curl_easy_setopt(curl_handle,CURLOPT_POSTFIELDS,databuf);
207 else curl_easy_setopt(curl_handle,CURLOPT_POSTFIELDS,params);
209 //laststart = milliseconds();
210 res = curl_easy_perform(curl_handle);
211 curl_slist_free_all(headers);
212 curl_easy_cleanup(curl_handle);
213 if ( databuf != 0 ) // clean up temporary buffer
218 if ( res != CURLE_OK )
221 if ( specialcase != 0 )
223 printf("<<<<<<<<<<< bitcoind_RPC.(%s): BTCD.%s timeout params.(%s) s.ptr.(%s) err.%d\n",url,command,params,s.ptr,res);
227 else if ( numretries >= 1 )
229 //printf("Maximum number of retries exceeded!\n");
233 if ( (rand() % 1000) == 0 )
234 printf( "curl_easy_perform() failed: %s %s.(%s %s), retries: %d\n",curl_easy_strerror(res),debugstr,url,command,numretries);
236 sleep((1<<numretries));
242 if ( command != 0 && specialcase == 0 )
245 elapsedsum += (OS_milliseconds() - starttime);
246 if ( (count % 1000000) == 0)
247 printf("%d: ave %9.6f | elapsed %.3f millis | bitcoind_RPC.(%s) url.(%s)\n",count,elapsedsum/count,(OS_milliseconds() - starttime),command,url);
253 return(post_process_bitcoind_RPC(debugstr,command,s.ptr,params));
257 if ( 0 && specialcase != 0 )
258 fprintf(stderr,"<<<<<<<<<<< bitcoind_RPC: BTCD.(%s) -> (%s)\n",params,s.ptr);
260 elapsedsum2 += (OS_milliseconds() - starttime);
261 if ( (count2 % 10000) == 0)
262 printf("%d: ave %9.6f | elapsed %.3f millis | NXT calls.(%s) cmd.(%s)\n",count2,elapsedsum2/count2,(double)(OS_milliseconds() - starttime),url,command);
266 printf("bitcoind_RPC: impossible case\n");
271 static size_t WriteMemoryCallback(void *ptr,size_t size,size_t nmemb,void *data)
273 size_t realsize = (size * nmemb);
274 struct MemoryStruct *mem = (struct MemoryStruct *)data;
275 mem->memory = (char *)((ptr != 0) ? realloc(mem->memory,mem->size + realsize + 1) : malloc(mem->size + realsize + 1));
276 if ( mem->memory != 0 )
279 memcpy(&(mem->memory[mem->size]),ptr,realsize);
280 mem->size += realsize;
281 mem->memory[mem->size] = 0;
283 //printf("got %d bytes\n",(int32_t)(size*nmemb));
287 char *curl_post(CURL **cHandlep,char *url,char *userpass,char *postfields,char *hdr0,char *hdr1,char *hdr2,char *hdr3)
289 struct MemoryStruct chunk; CURL *cHandle; long code; struct curl_slist *headers = 0;
290 if ( (cHandle= *cHandlep) == NULL )
291 *cHandlep = cHandle = curl_easy_init();
292 else curl_easy_reset(cHandle);
294 //curl_easy_setopt(cHandle,CURLOPT_VERBOSE, 1);
296 curl_easy_setopt(cHandle,CURLOPT_USERAGENT,"mozilla/4.0");//"Mozilla/4.0 (compatible; )");
297 curl_easy_setopt(cHandle,CURLOPT_SSL_VERIFYPEER,0);
298 //curl_easy_setopt(cHandle,CURLOPT_SSLVERSION,1);
299 curl_easy_setopt(cHandle,CURLOPT_URL,url);
300 curl_easy_setopt(cHandle,CURLOPT_CONNECTTIMEOUT,10);
301 if ( userpass != 0 && userpass[0] != 0 )
302 curl_easy_setopt(cHandle,CURLOPT_USERPWD,userpass);
303 if ( postfields != 0 && postfields[0] != 0 )
305 curl_easy_setopt(cHandle,CURLOPT_POST,1);
306 curl_easy_setopt(cHandle,CURLOPT_POSTFIELDS,postfields);
308 if ( hdr0 != NULL && hdr0[0] != 0 )
310 //printf("HDR0.(%s) HDR1.(%s) HDR2.(%s) HDR3.(%s)\n",hdr0!=0?hdr0:"",hdr1!=0?hdr1:"",hdr2!=0?hdr2:"",hdr3!=0?hdr3:"");
311 headers = curl_slist_append(headers,hdr0);
312 if ( hdr1 != 0 && hdr1[0] != 0 )
313 headers = curl_slist_append(headers,hdr1);
314 if ( hdr2 != 0 && hdr2[0] != 0 )
315 headers = curl_slist_append(headers,hdr2);
316 if ( hdr3 != 0 && hdr3[0] != 0 )
317 headers = curl_slist_append(headers,hdr3);
318 } //headers = curl_slist_append(0,"Expect:");
320 curl_easy_setopt(cHandle,CURLOPT_HTTPHEADER,headers);
321 //res = curl_easy_perform(cHandle);
322 memset(&chunk,0,sizeof(chunk));
323 curl_easy_setopt(cHandle,CURLOPT_WRITEFUNCTION,WriteMemoryCallback);
324 curl_easy_setopt(cHandle,CURLOPT_WRITEDATA,(void *)&chunk);
325 curl_easy_perform(cHandle);
326 curl_easy_getinfo(cHandle,CURLINFO_RESPONSE_CODE,&code);
328 curl_slist_free_all(headers);
330 printf("(%s) server responded with code %ld (%s)\n",url,code,chunk.memory);
331 return(chunk.memory);
334 char *komodo_issuemethod(char *userpass,char *method,char *params,uint16_t port)
336 //static void *cHandle;
337 char url[512],*retstr=0,*retstr2=0,postdata[8192];
338 if ( params == 0 || params[0] == 0 )
339 params = (char *)"[]";
340 if ( strlen(params) < sizeof(postdata)-128 )
342 sprintf(url,(char *)"http://127.0.0.1:%u",port);
343 sprintf(postdata,"{\"method\":\"%s\",\"params\":%s}",method,params);
344 //printf("[%s] (%s) postdata.(%s) params.(%s) USERPASS.(%s)\n",ASSETCHAINS_SYMBOL,url,postdata,params,KMDUSERPASS);
345 retstr2 = bitcoind_RPC(&retstr,(char *)"debug",url,userpass,method,params);
346 //retstr = curl_post(&cHandle,url,USERPASS,postdata,0,0,0,0);
351 int32_t notarizedtxid_height(char *dest,char *txidstr,int32_t *kmdnotarized_heightp)
353 char *jsonstr,params[256],*userpass; uint16_t port; cJSON *json,*item; int32_t height = 0,txid_height = 0,txid_confirmations = 0;
355 *kmdnotarized_heightp = 0;
356 if ( strcmp(dest,"KMD") == 0 )
359 userpass = KMDUSERPASS;
361 else if ( strcmp(dest,"BTC") == 0 )
364 userpass = BTCUSERPASS;
367 if ( userpass[0] != 0 )
369 if ( (jsonstr= komodo_issuemethod(userpass,(char *)"getinfo",params,port)) != 0 )
371 //printf("(%s)\n",jsonstr);
372 if ( (json= cJSON_Parse(jsonstr)) != 0 )
374 if ( (item= jobj(json,(char *)"result")) != 0 )
376 height = jint(item,(char *)"blocks");
377 *kmdnotarized_heightp = strcmp(dest,"KMD") == 0 ? jint(item,(char *)"notarized") : height;
383 sprintf(params,"[\"%s\", 1]",txidstr);
384 if ( (jsonstr= komodo_issuemethod(userpass,(char *)"getrawtransaction",params,port)) != 0 )
386 //printf("(%s)\n",jsonstr);
387 if ( (json= cJSON_Parse(jsonstr)) != 0 )
389 if ( (item= jobj(json,(char *)"result")) != 0 )
391 txid_confirmations = jint(item,(char *)"confirmations");
392 if ( txid_confirmations > 0 && height > txid_confirmations )
393 txid_height = height - txid_confirmations;
394 else txid_height = height;
395 //printf("height.%d tconfs.%d txid_height.%d\n",height,txid_confirmations,txid_height);
405 int32_t komodo_verifynotarizedscript(int32_t height,uint8_t *script,int32_t len,uint256 NOTARIZED_HASH)
407 int32_t i; uint256 hash; char params[256];
409 ((uint8_t *)&hash)[i] = script[2+i];
410 if ( hash == NOTARIZED_HASH )
413 printf("%02x",((uint8_t *)&NOTARIZED_HASH)[i]);
414 printf(" notarized, ");
416 printf("%02x",((uint8_t *)&hash)[i]);
417 printf(" opreturn from [%s] ht.%d\n",ASSETCHAINS_SYMBOL,height);
421 int32_t komodo_verifynotarization(char *symbol,char *dest,int32_t height,int32_t NOTARIZED_HEIGHT,uint256 NOTARIZED_HASH,uint256 NOTARIZED_DESTTXID)
423 char params[256],*jsonstr,*hexstr; uint8_t script[8192]; int32_t n,len,retval = -1; cJSON *json,*txjson,*vouts,*vout,*skey;
427 sprintf(¶ms[i*2 + 2],"%02x",((uint8_t *)&NOTARIZED_DESTTXID)[31-i]);
428 strcat(params,"\", 1]");*/
429 sprintf(params,"[\"%s\", 1]",NOTARIZED_DESTTXID.ToString().c_str());
430 if ( strcmp(symbol,ASSETCHAINS_SYMBOL[0]==0?(char *)"KMD":ASSETCHAINS_SYMBOL) != 0 )
432 if ( 0 && ASSETCHAINS_SYMBOL[0] != 0 )
433 printf("[%s] src.%s dest.%s params.[%s] ht.%d notarized.%d\n",ASSETCHAINS_SYMBOL,symbol,dest,params,height,NOTARIZED_HEIGHT);
434 if ( strcmp(dest,"KMD") == 0 )
436 if ( KMDUSERPASS[0] != 0 )
438 if ( ASSETCHAINS_SYMBOL[0] != 0 )
440 jsonstr = komodo_issuemethod(KMDUSERPASS,(char *)"getrawtransaction",params,KMD_PORT);
441 //printf("userpass.(%s) got (%s)\n",KMDUSERPASS,jsonstr);
443 }//else jsonstr = _dex_getrawtransaction();
444 else return(0); // need universal way to issue DEX* API, since notaries mine most blocks, this ok
446 else if ( strcmp(dest,"BTC") == 0 )
448 if ( BTCUSERPASS[0] != 0 )
450 //printf("BTCUSERPASS.(%s)\n",BTCUSERPASS);
451 jsonstr = komodo_issuemethod(BTCUSERPASS,(char *)"getrawtransaction",params,8332);
453 //else jsonstr = _dex_getrawtransaction();
458 printf("[%s] verifynotarization error unexpected dest.(%s)\n",ASSETCHAINS_SYMBOL,dest);
463 if ( (json= cJSON_Parse(jsonstr)) != 0 )
465 if ( (txjson= jobj(json,(char *)"result")) != 0 && (vouts= jarray(&n,txjson,(char *)"vout")) > 0 )
467 vout = jitem(vouts,n-1);
468 if ( 0 && ASSETCHAINS_SYMBOL[0] != 0 )
469 printf("vout.(%s)\n",jprint(vout,0));
470 if ( (skey= jobj(vout,(char *)"scriptPubKey")) != 0 )
472 if ( (hexstr= jstr(skey,(char *)"hex")) != 0 )
474 //printf("HEX.(%s)\n",hexstr);
475 len = strlen(hexstr) >> 1;
476 decode_hex(script,len,hexstr);
477 retval = komodo_verifynotarizedscript(height,script,len,NOTARIZED_HASH);
488 /*uint256 komodo_getblockhash(int32_t height)
490 uint256 hash; char params[128],*hexstr,*jsonstr; cJSON *result; int32_t i; uint8_t revbuf[32];
491 memset(&hash,0,sizeof(hash));
492 sprintf(params,"[%d]",height);
493 if ( (jsonstr= komodo_issuemethod(KMDUSERPASS,(char *)"getblockhash",params,BITCOIND_PORT)) != 0 )
495 if ( (result= cJSON_Parse(jsonstr)) != 0 )
497 if ( (hexstr= jstr(result,(char *)"result")) != 0 )
499 if ( is_hexstr(hexstr,0) == 64 )
501 decode_hex(revbuf,32,hexstr);
503 ((uint8_t *)&hash)[i] = revbuf[31-i];
508 printf("KMD hash.%d (%s) %x\n",height,jsonstr,*(uint32_t *)&hash);
514 uint256 _komodo_getblockhash(int32_t height);*/
516 uint64_t komodo_seed(int32_t height)
519 /*if ( 0 ) // problem during init time, seeds are needed for loading blockindex, so null seeds...
521 uint256 hash,zero; CBlockIndex *pindex;
522 memset(&hash,0,sizeof(hash));
523 memset(&zero,0,sizeof(zero));
526 if ( ASSETCHAINS_SYMBOL[0] == 0 )
527 hash = _komodo_getblockhash(height);
528 if ( memcmp(&hash,&zero,sizeof(hash)) == 0 )
529 hash = komodo_getblockhash(height);
532 printf("%02x",((uint8_t *)&hash)[i]);
533 printf(" seed.%d\n",height);
534 seed = arith_uint256(hash.GetHex()).GetLow64();
538 seed = (height << 13) ^ (height << 2);
540 seed |= (height & 0xffffffff);
541 seed ^= (seed << 17) ^ (seed << 1);
546 uint32_t komodo_txtime(uint256 hash)
550 if (!GetTransaction(hash, tx,
552 Params().GetConsensus(),
556 //printf("null GetTransaction\n");
557 return(tx.nLockTime);
562 void komodo_disconnect(CBlockIndex *pindex,CBlock& block)
564 char symbol[KOMODO_ASSETCHAIN_MAXLEN],dest[KOMODO_ASSETCHAIN_MAXLEN]; struct komodo_state *sp;
565 //fprintf(stderr,"disconnect ht.%d\n",pindex->nHeight);
566 komodo_init(pindex->nHeight);
567 if ( (sp= komodo_stateptr(symbol,dest)) != 0 )
569 //sp->rewinding = pindex->nHeight;
570 //fprintf(stderr,"-%d ",pindex->nHeight);
571 } else printf("komodo_disconnect: ht.%d cant get komodo_state.(%s)\n",pindex->nHeight,ASSETCHAINS_SYMBOL);
575 int32_t komodo_is_notarytx(const CTransaction& tx)
577 uint8_t *ptr,crypto777[33];
578 if ( tx.vout.size() > 0 )
581 ptr = (uint8_t *)tx.vout[0].scriptPubKey.data();
583 ptr = (uint8_t *)&tx.vout[0].scriptPubKey[0];
587 decode_hex(crypto777,33,(char *)CRYPTO777_PUBSECPSTR);
588 if ( memcmp(ptr+1,crypto777,33) == 0 )
590 //printf("found notarytx\n");
598 int32_t komodo_block2height(CBlock *block)
600 int32_t i,n,height = 0; uint8_t *ptr;
601 if ( block->vtx[0].vin.size() > 0 )
604 ptr = (uint8_t *)block->vtx[0].vin[0].scriptSig.data();
606 ptr = (uint8_t *)&block->vtx[0].vin[0].scriptSig[0];
608 if ( ptr != 0 && block->vtx[0].vin[0].scriptSig.size() > 5 )
610 //for (i=0; i<6; i++)
611 // printf("%02x",ptr[i]);
615 //03bb81000101(bb 187) (81 48001) (00 12288256) <- coinbase.6 ht.12288256
616 height += ((uint32_t)ptr[i+1] << (i*8));
617 //printf("(%02x %x %d) ",ptr[i+1],((uint32_t)ptr[i+1] << (i*8)),height);
619 //printf(" <- coinbase.%d ht.%d\n",(int32_t)block->vtx[0].vin[0].scriptSig.size(),height);
621 //komodo_init(height);
626 void komodo_block2pubkey33(uint8_t *pubkey33,CBlock& block)
629 memset(pubkey33,0,33);
630 if ( block.vtx[0].vout.size() > 0 )
633 uint8_t *ptr = (uint8_t *)block.vtx[0].vout[0].scriptPubKey.data();
635 uint8_t *ptr = (uint8_t *)&block.vtx[0].vout[0].scriptPubKey[0];
638 n = block.vtx[0].vout[0].scriptPubKey.size();
640 memcpy(pubkey33,ptr+1,33);
644 int32_t komodo_blockload(CBlock& block,CBlockIndex *pindex)
647 // Open history file to read
648 CAutoFile filein(OpenBlockFile(pindex->GetBlockPos(),true),SER_DISK,CLIENT_VERSION);
652 try { filein >> block; }
653 catch (const std::exception& e)
655 fprintf(stderr,"readblockfromdisk err B\n");
661 CBlockIndex *komodo_chainactive(int32_t height)
663 if ( chainActive.Tip() != 0 )
665 if ( height <= chainActive.Tip()->nHeight )
666 return(chainActive[height]);
667 // else fprintf(stderr,"komodo_chainactive height %d > active.%d\n",height,chainActive.Tip()->nHeight);
669 //fprintf(stderr,"komodo_chainactive null chainActive.Tip() height %d\n",height);
673 uint32_t komodo_heightstamp(int32_t height)
676 if ( height > 0 && (ptr= komodo_chainactive(height)) != 0 )
678 else fprintf(stderr,"komodo_heightstamp null ptr for block.%d\n",height);
682 void komodo_index2pubkey33(uint8_t *pubkey33,CBlockIndex *pindex,int32_t height)
685 //komodo_init(height);
686 memset(pubkey33,0,33);
689 if ( komodo_blockload(block,pindex) == 0 )
690 komodo_block2pubkey33(pubkey33,block);
694 // height -> pubkey33
695 //printf("extending chaintip komodo_index2pubkey33 height.%d need to get pubkey33\n",height);
699 void komodo_connectpindex(CBlockIndex *pindex)
702 if ( komodo_blockload(block,pindex) == 0 )
703 komodo_connectblock(pindex,block);
706 int32_t komodo_notaries(uint8_t pubkeys[64][33],int32_t height);
707 int32_t komodo_electednotary(uint8_t *pubkey33,int32_t height);
709 int8_t komodo_minerid(int32_t height,uint8_t *pubkey33)
711 int32_t num,i; CBlockIndex *pindex; uint8_t _pubkey33[33],pubkeys[64][33];
712 if ( pubkey33 == 0 && (pindex= chainActive[height]) != 0 )
716 pubkey33 = _pubkey33;
717 komodo_index2pubkey33(pubkey33,pindex,height);
719 if ( (num= komodo_notaries(pubkeys,height)) > 0 )
721 for (i=0; i<num; i++)
722 if ( memcmp(pubkeys[i],pubkey33,33) == 0 )
726 return(komodo_electednotary(pubkey33,height));
729 int32_t komodo_eligiblenotary(uint8_t pubkeys[66][33],int32_t *mids,int32_t *nonzpkeysp,int32_t height)
731 int32_t i,j,duplicate; CBlockIndex *pindex; uint8_t pubkey33[33];
732 memset(mids,-1,sizeof(*mids)*66);
733 for (i=duplicate=0; i<66; i++)
735 if ( (pindex= komodo_chainactive(height-i)) != 0 )
737 komodo_index2pubkey33(pubkey33,pindex,height-i);
739 pubkeys[i][j] = pubkey33[j];
740 if ( (mids[i]= komodo_minerid(height-i,pubkey33)) >= 0 )
742 //mids[i] = *(int32_t *)pubkey33;
745 if ( mids[0] >= 0 && i > 0 && mids[i] == mids[0] )
749 if ( i == 66 && duplicate == 0 && (height > 186233 || *nonzpkeysp > 0) )
754 int32_t komodo_minerids(uint8_t *minerids,int32_t height,int32_t width)
757 for (i=0; i<width; i++,n++)
761 minerids[i] = komodo_minerid(height - i,0);
766 int32_t komodo_is_special(int32_t height,uint8_t pubkey33[33],uint32_t timestamp)
768 int32_t i,notaryid=0,minerid,limit,nid; uint8_t _pubkey33[33];
769 if ( height >= 225000 )
770 komodo_chosennotary(¬aryid,height,_pubkey33,timestamp);
771 if ( height >= 34000 && notaryid >= 0 )
773 if ( height < 79693 )
775 else if ( height < 82000 )
778 for (i=1; i<limit; i++)
780 komodo_chosennotary(&nid,height-i,_pubkey33,timestamp);
781 if ( nid == notaryid ) //komodo_minerid(height-i,_pubkey33)
783 if ( (0) && notaryid > 0 )
784 fprintf(stderr,"ht.%d notaryid.%d already mined -i.%d nid.%d\n",height,notaryid,i,nid);
785 if ( height > 225000 )
789 //fprintf(stderr,"special notaryid.%d ht.%d limit.%d\n",notaryid,height,limit);
795 int32_t komodo_checkpoint(int32_t *notarized_heightp,int32_t nHeight,uint256 hash)
797 int32_t notarized_height; uint256 notarized_hash,notarized_desttxid; CBlockIndex *notary; CBlockIndex *pindex;
798 if ( (pindex= chainActive.Tip()) == 0 )
800 notarized_height = komodo_notarizeddata(pindex->nHeight,¬arized_hash,¬arized_desttxid);
801 *notarized_heightp = notarized_height;
802 if ( notarized_height >= 0 && notarized_height <= pindex->nHeight && (notary= mapBlockIndex[notarized_hash]) != 0 )
804 //printf("nHeight.%d -> (%d %s)\n",pindex->Tip()->nHeight,notarized_height,notarized_hash.ToString().c_str());
805 if ( notary->nHeight == notarized_height ) // if notarized_hash not in chain, reorg
807 if ( nHeight < notarized_height )
809 fprintf(stderr,"nHeight.%d < NOTARIZED_HEIGHT.%d\n",nHeight,notarized_height);
812 else if ( nHeight == notarized_height && memcmp(&hash,¬arized_hash,sizeof(hash)) != 0 )
814 fprintf(stderr,"nHeight.%d == NOTARIZED_HEIGHT.%d, diff hash\n",nHeight,notarized_height);
817 } else fprintf(stderr,"unexpected error notary_hash %s ht.%d at ht.%d\n",notarized_hash.ToString().c_str(),notarized_height,notary->nHeight);
818 } else if ( notarized_height > 0 && notarized_height != 73880 && notarized_height >= 170000 )
819 fprintf(stderr,"[%s] couldnt find notarized.(%s %d) ht.%d\n",ASSETCHAINS_SYMBOL,notarized_hash.ToString().c_str(),notarized_height,pindex->nHeight);
823 uint32_t komodo_interest_args(uint32_t *txheighttimep,int32_t *txheightp,uint32_t *tiptimep,uint64_t *valuep,uint256 hash,int32_t n)
826 CTransaction tx; uint256 hashBlock; CBlockIndex *pindex,*tipindex;
827 *txheighttimep = *txheightp = *tiptimep = 0;
829 if ( !GetTransaction(hash,tx,hashBlock,true) )
831 uint32_t locktime = 0;
832 if ( n < tx.vout.size() )
834 if ( (pindex= mapBlockIndex[hashBlock]) != 0 && (tipindex= chainActive.Tip()) != 0 )
836 *valuep = tx.vout[n].nValue;
837 *txheightp = pindex->nHeight;
838 *txheighttimep = pindex->nTime;
839 *tiptimep = tipindex->nTime;
840 locktime = tx.nLockTime;
841 //fprintf(stderr,"tx locktime.%u %.8f height.%d | tiptime.%u\n",locktime,(double)*valuep/COIN,*txheightp,*tiptimep);
847 uint64_t komodo_interest(int32_t txheight,uint64_t nValue,uint32_t nLockTime,uint32_t tiptime);
848 uint64_t komodo_accrued_interest(int32_t *txheightp,uint32_t *locktimep,uint256 hash,int32_t n,int32_t checkheight,uint64_t checkvalue)
850 uint64_t value; uint32_t tiptime,txheighttimep;
851 if ( (*locktimep= komodo_interest_args(&txheighttimep,txheightp,&tiptime,&value,hash,n)) != 0 )
853 if ( (checkvalue == 0 || value == checkvalue) && (checkheight == 0 || *txheightp == checkheight) )
854 return(komodo_interest(*txheightp,value,*locktimep,tiptime));
855 //fprintf(stderr,"nValue %llu lock.%u:%u nTime.%u -> %llu\n",(long long)coins.vout[n].nValue,coins.nLockTime,timestamp,pindex->nTime,(long long)interest);
856 else fprintf(stderr,"komodo_accrued_interest value mismatch %llu vs %llu or height mismatch %d vs %d\n",(long long)value,(long long)checkvalue,*txheightp,checkheight);
861 int32_t komodo_isrealtime(int32_t *kmdheightp)
863 struct komodo_state *sp; CBlockIndex *pindex;
864 if ( (sp= komodo_stateptrget((char *)"KMD")) != 0 )
865 *kmdheightp = sp->CURRENT_HEIGHT;
866 else *kmdheightp = 0;
867 if ( (pindex= chainActive.Tip()) != 0 && pindex->nHeight >= (int32_t)komodo_longestchain() )
872 int32_t komodo_validate_interest(const CTransaction &tx,int32_t txheight,uint32_t nTime,int32_t dispflag)
874 uint32_t cmptime = nTime;
875 if ( KOMODO_REWIND == 0 && ASSETCHAINS_SYMBOL[0] == 0 && (int64_t)tx.nLockTime >= LOCKTIME_THRESHOLD ) //1473793441 )
877 if ( txheight > 246748 )
879 if ( txheight < 247205 )
881 if ( (int64_t)tx.nLockTime < cmptime-3600 )
883 if ( tx.nLockTime != 1477258935 || dispflag != 0 )
885 //fprintf(stderr,"komodo_validate_interest.%d reject.%d [%d] locktime %u cmp2.%u\n",dispflag,txheight,(int32_t)(tx.nLockTime - (cmptime-3600)),(uint32_t)tx.nLockTime,cmptime);
889 if ( 0 && dispflag != 0 )
890 fprintf(stderr,"validateinterest.%d accept.%d [%d] locktime %u cmp2.%u\n",dispflag,(int32_t)txheight,(int32_t)(tx.nLockTime - (cmptime-3600)),(int32_t)tx.nLockTime,cmptime);