]> Git Repo - VerusCoin.git/blob - src/komodo_gateway.h
Test
[VerusCoin.git] / src / komodo_gateway.h
1 /******************************************************************************
2  * Copyright © 2014-2017 The SuperNET Developers.                             *
3  *                                                                            *
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.  *
7  *                                                                            *
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 *
11  *                                                                            *
12  * Removal or modification of this copyright notice is prohibited.            *
13  *                                                                            *
14  ******************************************************************************/
15
16 // paxdeposit equivalent in reverse makes opreturn and KMD does the same in reverse
17
18 int32_t pax_fiatstatus(uint64_t *available,uint64_t *deposited,uint64_t *issued,uint64_t *withdrawn,uint64_t *approved,uint64_t *redeemed,char *base)
19 {
20     int32_t baseid; struct komodo_state *sp; int64_t netliability,maxallowed,maxval;
21     *available = *deposited = *issued = *withdrawn = *approved = *redeemed = 0;
22     if ( (baseid= komodo_baseid(base)) >= 0 )
23     {
24         if ( (sp= komodo_stateptrget(base)) != 0 )
25         {
26             *deposited = sp->deposited;
27             *issued = sp->issued;
28             *withdrawn = sp->withdrawn;
29             *approved = sp->approved;
30             *redeemed = sp->redeemed;
31             maxval = sp->approved;
32             if ( sp->withdrawn > maxval )
33                 maxval = sp->withdrawn;
34             netliability = (sp->issued - maxval) - sp->shorted;
35             maxallowed = komodo_maxallowed(baseid);
36             if ( netliability < maxallowed )
37                 *available = (maxallowed - netliability);
38             //printf("%llu - %llu %s %.8f %.8f %.8f %.8f %.8f\n",(long long)maxallowed,(long long)netliability,base,dstr(*deposited),dstr(*issued),dstr(*withdrawn),dstr(*approved),dstr(*redeemed));
39             return(0);
40         } else printf("pax_fiatstatus cant get basesp.%s\n",base);
41     } // else printf("pax_fiatstatus illegal base.%s\n",base);
42     return(-1);
43 }
44
45 void pax_keyset(uint8_t *buf,uint256 txid,uint16_t vout,uint8_t type)
46 {
47     memcpy(buf,&txid,32);
48     memcpy(&buf[32],&vout,2);
49     buf[34] = type;
50 }
51
52 struct pax_transaction *komodo_paxfind(uint256 txid,uint16_t vout,uint8_t type)
53 {
54     struct pax_transaction *pax; uint8_t buf[35];
55     pthread_mutex_lock(&komodo_mutex);
56     pax_keyset(buf,txid,vout,type);
57     HASH_FIND(hh,PAX,buf,sizeof(buf),pax);
58     pthread_mutex_unlock(&komodo_mutex);
59     return(pax);
60 }
61
62 struct pax_transaction *komodo_paxfinds(uint256 txid,uint16_t vout)
63 {
64     struct pax_transaction *pax; int32_t i; uint8_t types[] = { 'I', 'D', 'X', 'A', 'W' };
65     for (i=0; i<sizeof(types)/sizeof(*types); i++)
66         if ( (pax= komodo_paxfind(txid,vout,types[i])) != 0 )
67             return(pax);
68     return(0);
69 }
70
71 struct pax_transaction *komodo_paxmark(int32_t height,uint256 txid,uint16_t vout,uint8_t type,int32_t mark)
72 {
73     struct pax_transaction *pax; uint8_t buf[35];
74     pthread_mutex_lock(&komodo_mutex);
75     pax_keyset(buf,txid,vout,type);
76     HASH_FIND(hh,PAX,buf,sizeof(buf),pax);
77     if ( pax == 0 )
78     {
79         pax = (struct pax_transaction *)calloc(1,sizeof(*pax));
80         pax->txid = txid;
81         pax->vout = vout;
82         pax->type = type;
83         memcpy(pax->buf,buf,sizeof(pax->buf));
84         HASH_ADD_KEYPTR(hh,PAX,pax->buf,sizeof(pax->buf),pax);
85         //printf("ht.%d create pax.%p mark.%d\n",height,pax,mark);
86     }
87     if ( pax != 0 )
88     {
89         pax->marked = mark;
90         //if ( height > 214700 || pax->height > 214700 )
91         //    printf("mark ht.%d %.8f %.8f\n",pax->height,dstr(pax->komodoshis),dstr(pax->fiatoshis));
92         
93     }
94     pthread_mutex_unlock(&komodo_mutex);
95     return(pax);
96 }
97
98 void komodo_paxdelete(struct pax_transaction *pax)
99 {
100     return; // breaks when out of order
101     pthread_mutex_lock(&komodo_mutex);
102     HASH_DELETE(hh,PAX,pax);
103     pthread_mutex_unlock(&komodo_mutex);
104 }
105
106 void komodo_gateway_deposit(char *coinaddr,uint64_t value,char *symbol,uint64_t fiatoshis,uint8_t *rmd160,uint256 txid,uint16_t vout,uint8_t type,int32_t height,int32_t otherheight,char *source,int32_t approved) // assetchain context
107 {
108     struct pax_transaction *pax; uint8_t buf[35]; int32_t addflag = 0; struct komodo_state *sp; char str[16],dest[16],*s;
109     //if ( KOMODO_PAX == 0 )
110     //    return;
111     sp = komodo_stateptr(str,dest);
112     pthread_mutex_lock(&komodo_mutex);
113     pax_keyset(buf,txid,vout,type);
114     HASH_FIND(hh,PAX,buf,sizeof(buf),pax);
115     if ( pax == 0 )
116     {
117         pax = (struct pax_transaction *)calloc(1,sizeof(*pax));
118         pax->txid = txid;
119         pax->vout = vout;
120         pax->type = type;
121         memcpy(pax->buf,buf,sizeof(pax->buf));
122         HASH_ADD_KEYPTR(hh,PAX,pax->buf,sizeof(pax->buf),pax);
123         addflag = 1;
124         if ( 0 && ASSETCHAINS_SYMBOL[0] == 0 )
125         {
126             int32_t i; for (i=0; i<32; i++)
127                 printf("%02x",((uint8_t *)&txid)[i]);
128             printf(" v.%d [%s] kht.%d ht.%d create pax.%p symbol.%s source.%s\n",vout,ASSETCHAINS_SYMBOL,height,otherheight,pax,symbol,source);
129         }
130     }
131     pthread_mutex_unlock(&komodo_mutex);
132     if ( coinaddr != 0 )
133     {
134         strcpy(pax->coinaddr,coinaddr);
135         if ( value != 0 )
136             pax->komodoshis = value;
137         if ( symbol != 0 )
138             strcpy(pax->symbol,symbol);
139         if ( source != 0 )
140             strcpy(pax->source,source);
141         if ( fiatoshis != 0 )
142             pax->fiatoshis = fiatoshis;
143         if ( rmd160 != 0 )
144             memcpy(pax->rmd160,rmd160,20);
145         if ( height != 0 )
146             pax->height = height;
147         if ( otherheight != 0 )
148             pax->otherheight = otherheight;
149     }
150     else
151     {
152         pax->marked = height;
153         //printf("pax.%p MARK DEPOSIT ht.%d other.%d\n",pax,height,otherheight);
154     }
155 }
156
157 int32_t komodo_rwapproval(int32_t rwflag,uint8_t *opretbuf,struct pax_transaction *pax)
158 {
159     int32_t i,len = 0;
160     if ( rwflag == 1 )
161     {
162         for (i=0; i<32; i++)
163             opretbuf[len++] = ((uint8_t *)&pax->txid)[i];
164         opretbuf[len++] = pax->vout & 0xff;
165         opretbuf[len++] = (pax->vout >> 8) & 0xff;
166     }
167     else
168     {
169         for (i=0; i<32; i++)
170             ((uint8_t *)&pax->txid)[i] = opretbuf[len++];
171         //for (i=0; i<32; i++)
172         //    printf("%02x",((uint8_t *)&pax->txid)[31-i]);
173         pax->vout = opretbuf[len++];
174         pax->vout += ((uint32_t)opretbuf[len++] << 8);
175         //printf(" txid v.%d\n",pax->vout);
176     }
177     len += iguana_rwnum(rwflag,&opretbuf[len],sizeof(pax->komodoshis),&pax->komodoshis);
178     len += iguana_rwnum(rwflag,&opretbuf[len],sizeof(pax->fiatoshis),&pax->fiatoshis);
179     len += iguana_rwnum(rwflag,&opretbuf[len],sizeof(pax->height),&pax->height);
180     len += iguana_rwnum(rwflag,&opretbuf[len],sizeof(pax->otherheight),&pax->otherheight);
181     if ( rwflag != 0 )
182     {
183         memcpy(&opretbuf[len],pax->rmd160,20), len += 20;
184         for (i=0; i<4; i++)
185             opretbuf[len++] = pax->source[i];
186     }
187     else
188     {
189         memcpy(pax->rmd160,&opretbuf[len],20), len += 20;
190         for (i=0; i<4; i++)
191             pax->source[i] = opretbuf[len++];
192     }
193     return(len);
194 }
195
196 int32_t komodo_issued_opreturn(char *base,uint256 *txids,uint16_t *vouts,int64_t *values,int64_t *srcvalues,int32_t *kmdheights,int32_t *otherheights,int8_t *baseids,uint8_t *rmd160s,uint8_t *opretbuf,int32_t opretlen,int32_t iskomodo)
197 {
198     struct pax_transaction p,*pax; int32_t i,n=0,j,len=0,incr,height,otherheight; uint8_t type,rmd160[20]; uint64_t fiatoshis; char symbol[16];
199     //if ( KOMODO_PAX == 0 )
200     //    return(0);
201     incr = 34 + (iskomodo * (2*sizeof(fiatoshis) + 2*sizeof(height) + 20 + 4));
202     //41e77b91cb68dc2aa02fa88550eae6b6d44db676a7e935337b6d1392d9718f03cb0200305c90660400000000fbcbeb1f000000bde801006201000058e7945ad08ddba1eac9c9b6c8e1e97e8016a2d152
203     
204     // 41e94d736ec69d88c08b5d238abeeca609c02357a8317e0d56c328bcb1c259be5d0200485bc80200000000404b4c000000000059470200b80b000061f22ba7d19fe29ac3baebd839af8b7127d1f9075553440046bb4cc7a3b5cd39dffe7206507a3482a00780e617f68b273cce9817ed69298d02001069ca1b0000000080f0fa02000000005b470200b90b000061f22ba7d19fe29ac3baebd839af8b7127d1f90755
205     
206     //for (i=0; i<opretlen; i++)
207     //    printf("%02x",opretbuf[i]);
208     //printf(" opretlen.%d (%s)\n",opretlen,base);
209     //printf(" opretlen.%d vs %d incr.%d (%d)\n",opretlen,(int32_t)(2*sizeof(fiatoshis) + 2*sizeof(height) + 20 + 2),incr,opretlen/incr);
210     //if ( ASSETCHAINS_SYMBOL[0] == 0 || strncmp(ASSETCHAINS_SYMBOL,base,strlen(base)) == 0 )
211     {
212         type = opretbuf[0];
213         opretbuf++, opretlen--;
214         for (n=0; n<opretlen/incr; n++)
215         {
216             if ( iskomodo != 0 )
217             {
218                 memset(&p,0,sizeof(p));
219                 len += komodo_rwapproval(0,&opretbuf[len],&p);
220                 if ( values != 0 && srcvalues != 0 && kmdheights != 0 && otherheights != 0 && baseids != 0 && rmd160s != 0 )
221                 {
222                     txids[n] = p.txid;
223                     vouts[n] = p.vout;
224                     values[n] = (strcmp("KMD",base) == 0) ? p.komodoshis : p.fiatoshis;
225                     srcvalues[n] = (strcmp("KMD",base) == 0) ? p.fiatoshis : p.komodoshis;
226                     kmdheights[n] = p.height;
227                     otherheights[n] = p.otherheight;
228                     memcpy(&rmd160s[n * 20],p.rmd160,20);
229                     baseids[n] = komodo_baseid(p.source);
230                     if ( 0 )
231                     {
232                         char coinaddr[64];
233                         bitcoin_address(coinaddr,60,&rmd160s[n * 20],20);
234                         printf(">>>>>>> %s: (%s) fiat %.8f kmdheight.%d other.%d -> %s %.8f\n",type=='A'?"approvedA":"issuedX",baseids[n]>=0?CURRENCIES[baseids[n]]:"???",dstr(p.fiatoshis),kmdheights[n],otherheights[n],coinaddr,dstr(values[n]));
235                     }
236                 }
237             }
238             else
239             {
240                 for (i=0; i<4; i++)
241                     base[i] = opretbuf[opretlen-4+i];
242                 for (j=0; j<32; j++)
243                 {
244                     ((uint8_t *)&txids[n])[j] = opretbuf[len++];
245                     //printf("%02x",((uint8_t *)&txids[n])[j]);
246                 }
247                 vouts[n] = opretbuf[len++];
248                 vouts[n] = (opretbuf[len++] << 8) | vouts[n];
249                 baseids[n] = komodo_baseid(base);
250                 if ( (pax= komodo_paxfinds(txids[n],vouts[n])) != 0 )
251                 {
252                     values[n] = (strcmp("KMD",base) == 0) ? pax->komodoshis : pax->fiatoshis;
253                     srcvalues[n] = (strcmp("KMD",base) == 0) ? pax->fiatoshis : pax->komodoshis;
254                     kmdheights[n] = pax->height;
255                     otherheights[n] = pax->otherheight;
256                     memcpy(&rmd160s[n * 20],pax->rmd160,20);
257                 }
258             }
259             //printf(" komodo_issued_opreturn issuedtxid v%d i.%d opretlen.%d\n",vouts[n],n,opretlen);
260         }
261     }
262     return(n);
263 }
264
265 int32_t komodo_paxcmp(char *symbol,int32_t kmdheight,uint64_t value,uint64_t checkvalue,uint64_t seed)
266 {
267     int32_t ratio;
268     if ( seed == 0 && checkvalue != 0 )
269     {
270         ratio = ((value << 6) / checkvalue);
271         if ( ratio >= 62 && ratio <= 66 )
272             return(0);
273         else
274         {
275             if ( kmdheight >= 238000 )
276                 printf("ht.%d ignore mismatched %s value %lld vs checkvalue %lld -> ratio.%d\n",kmdheight,symbol,(long long)value,(long long)checkvalue,ratio);
277             return(-1);
278         }
279     }
280     else if ( checkvalue != 0 )
281     {
282         ratio = ((value << 10) / checkvalue);
283         if ( ratio >= 1023 && ratio <= 1025 )
284             return(0);
285     }
286     return(value != checkvalue);
287 }
288
289 uint64_t komodo_paxtotal()
290 {
291     struct pax_transaction *pax,*pax2,*tmp,*tmp2; char symbol[16],dest[16],*str; int32_t i,ht; int64_t checktoshis; uint64_t seed,total = 0; struct komodo_state *basesp;
292     if ( KOMODO_PASSPORT_INITDONE == 0 ) //KOMODO_PAX == 0 ||
293         return(0);
294     if ( komodo_isrealtime(&ht) == 0 )
295         return(0);
296     else
297     {
298         HASH_ITER(hh,PAX,pax,tmp)
299         {
300             if ( pax->marked != 0 )
301                 continue;
302             if ( pax->type == 'A' || pax->type == 'D' || pax->type == 'X' )
303                 str = pax->symbol;
304             else str = pax->source;
305             basesp = komodo_stateptrget(str);
306             if ( basesp != 0 && pax->didstats == 0 )
307             {
308                 if ( pax->type == 'I' && (pax2= komodo_paxfind(pax->txid,pax->vout,'D')) != 0 )
309                 {
310                     if ( pax2->fiatoshis != 0 )
311                     {
312                         pax->komodoshis = pax2->komodoshis;
313                         pax->fiatoshis = pax2->fiatoshis;
314                         basesp->issued += pax->fiatoshis;
315                         pax->didstats = 1;
316                         if ( strcmp(str,ASSETCHAINS_SYMBOL) == 0 )
317                             printf("########### %p issued %s += %.8f kmdheight.%d %.8f other.%d\n",basesp,str,dstr(pax->fiatoshis),pax->height,dstr(pax->komodoshis),pax->otherheight);
318                         pax2->marked = pax->height;
319                         pax->marked = pax->height;
320                     }
321                 }
322                 else if ( pax->type == 'W' )
323                 {
324                     //bitcoin_address(coinaddr,addrtype,rmd160,20);
325                     if ( (checktoshis= komodo_paxprice(&seed,pax->height,pax->source,(char *)"KMD",(uint64_t)pax->fiatoshis)) != 0 )
326                     {
327                         if ( komodo_paxcmp(pax->source,pax->height,pax->komodoshis,checktoshis,seed) != 0 )
328                         {
329                             pax->marked = pax->height;
330                             //printf("WITHDRAW.%s mark <- %d %.8f != %.8f\n",pax->source,pax->height,dstr(checktoshis),dstr(pax->komodoshis));
331                         }
332                         else if ( pax->validated == 0 )
333                         {
334                             pax->validated = pax->komodoshis = checktoshis;
335                             //int32_t j; for (j=0; j<32; j++)
336                             //    printf("%02x",((uint8_t *)&pax->txid)[j]);
337                             //if ( strcmp(str,ASSETCHAINS_SYMBOL) == 0 )
338                             //    printf(" v%d %p got WITHDRAW.%s kmd.%d ht.%d %.8f -> %.8f/%.8f\n",pax->vout,pax,pax->source,pax->height,pax->otherheight,dstr(pax->fiatoshis),dstr(pax->komodoshis),dstr(checktoshis));
339                         }
340                     }
341                 }
342             }
343         }
344     }
345     komodo_stateptr(symbol,dest);
346     HASH_ITER(hh,PAX,pax,tmp)
347     {
348         pax->ready = 0;
349         if ( 0 && pax->type == 'A' )
350             printf("%p pax.%s <- %s marked.%d %.8f -> %.8f validated.%d approved.%d\n",pax,pax->symbol,pax->source,pax->marked,dstr(pax->komodoshis),dstr(pax->fiatoshis),pax->validated != 0,pax->approved != 0);
351         if ( pax->marked != 0 )
352             continue;
353         if ( strcmp(symbol,pax->symbol) == 0 || pax->type == 'A' )
354         {
355             if ( pax->marked == 0 )
356             {
357                 if ( komodo_is_issuer() != 0 )
358                 {
359                     if ( pax->validated != 0 && pax->type == 'D' )
360                     {
361                         total += pax->fiatoshis;
362                         pax->ready = 1;
363                     }
364                 }
365                 else if ( pax->approved != 0 && pax->type == 'A' )
366                 {
367                     if ( pax->validated != 0 )
368                     {
369                         total += pax->komodoshis;
370                         pax->ready = 1;
371                     }
372                     else
373                     {
374                         seed = 0;
375                         checktoshis = komodo_paxprice(&seed,pax->height,pax->source,(char *)"KMD",(uint64_t)pax->fiatoshis);
376                         //printf("paxtotal PAX_fiatdest ht.%d price %s %.8f -> KMD %.8f vs %.8f\n",pax->height,pax->symbol,(double)pax->fiatoshis/COIN,(double)pax->komodoshis/COIN,(double)checktoshis/COIN);
377                         //printf(" v%d %.8f k.%d ht.%d\n",pax->vout,dstr(pax->komodoshis),pax->height,pax->otherheight);
378                         if ( seed != 0 && checktoshis != 0 )
379                         {
380                             if ( checktoshis == pax->komodoshis )
381                             {
382                                 total += pax->komodoshis;
383                                 pax->validated = pax->komodoshis;
384                                 pax->ready = 1;
385                             } else pax->marked = pax->height;
386                         }
387                     }
388                 }
389                 if ( 0 && pax->ready != 0 )
390                     printf("%p (%c) pax.%s marked.%d %.8f -> %.8f validated.%d approved.%d ready.%d ht.%d\n",pax,pax->type,pax->symbol,pax->marked,dstr(pax->komodoshis),dstr(pax->fiatoshis),pax->validated != 0,pax->approved != 0,pax->ready,pax->height);
391             }
392         }
393     }
394     //printf("paxtotal %.8f\n",dstr(total));
395     return(total);
396 }
397
398 static int _paxorder(const void *a,const void *b)
399 {
400 #define pax_a (*(struct pax_transaction **)a)
401 #define pax_b (*(struct pax_transaction **)b)
402     uint64_t aval,bval;
403     aval = pax_a->fiatoshis + pax_a->komodoshis + pax_a->height;
404     bval = pax_b->fiatoshis + pax_b->komodoshis + pax_b->height;
405         if ( bval > aval )
406                 return(-1);
407         else if ( bval < aval )
408                 return(1);
409         return(0);
410 #undef pax_a
411 #undef pax_b
412 }
413
414 int32_t komodo_pending_withdraws(char *opretstr) // todo: enforce deterministic order
415 {
416     struct pax_transaction *pax,*pax2,*tmp,*paxes[64]; uint8_t opretbuf[16384]; int32_t i,n,ht,len=0; uint64_t total = 0;
417     if ( KOMODO_PAX == 0 || KOMODO_PASSPORT_INITDONE == 0 )
418         return(0);
419     if ( komodo_isrealtime(&ht) == 0 || ASSETCHAINS_SYMBOL[0] != 0 )
420         return(0);
421     n = 0;
422     HASH_ITER(hh,PAX,pax,tmp)
423     {
424         if ( pax->type == 'W' )
425         {
426             if ( (pax2= komodo_paxfind(pax->txid,pax->vout,'A')) != 0 )
427             {
428                 if ( pax2->approved != 0 )
429                     pax->approved = pax2->approved;
430             }
431             else if ( (pax2= komodo_paxfind(pax->txid,pax->vout,'X')) != 0 )
432                 pax->approved = pax->height;
433             //printf("pending_withdraw: pax %s marked.%u approved.%u validated.%llu\n",pax->symbol,pax->marked,pax->approved,(long long)pax->validated);
434             if ( pax->marked == 0 && pax->approved == 0 && pax->validated != 0 ) //strcmp((char *)"KMD",pax->symbol) == 0 &&
435             {
436                 if ( n < sizeof(paxes)/sizeof(*paxes) )
437                 {
438                     paxes[n++] = pax;
439                     //int32_t j; for (j=0; j<32; j++)
440                     //    printf("%02x",((uint8_t *)&pax->txid)[j]);
441                     //printf(" %s.(kmdht.%d ht.%d marked.%u approved.%d validated %.8f) %.8f\n",pax->source,pax->height,pax->otherheight,pax->marked,pax->approved,dstr(pax->validated),dstr(pax->komodoshis));
442                 }
443             }
444         }
445     }
446     opretstr[0] = 0;
447     if ( n > 0 )
448     {
449         opretbuf[len++] = 'A';
450         qsort(paxes,n,sizeof(*paxes),_paxorder);
451         for (i=0; i<n; i++)
452         {
453             if ( len < (sizeof(opretbuf)>>3)*7 )
454                 len += komodo_rwapproval(1,&opretbuf[len],paxes[i]);
455         }
456         if ( len > 0 )
457             init_hexbytes_noT(opretstr,opretbuf,len);
458     }
459     //fprintf(stderr,"komodo_pending_withdraws len.%d PAXTOTAL %.8f\n",len,dstr(komodo_paxtotal()));
460     return(len);
461 }
462
463 int32_t komodo_gateway_deposits(CMutableTransaction *txNew,char *base,int32_t tokomodo)
464 {
465     struct pax_transaction *pax,*tmp; char symbol[16],dest[16]; uint8_t *script,opcode,opret[16384],data[16384]; int32_t i,baseid,ht,len=0,opretlen=0,numvouts=1; struct komodo_state *sp; uint64_t available,deposited,issued,withdrawn,approved,redeemed,mask,sum = 0;
466     if ( KOMODO_PASSPORT_INITDONE == 0 )//KOMODO_PAX == 0 ||
467         return(0);
468     struct komodo_state *kmdsp = komodo_stateptrget((char *)"KMD");
469     sp = komodo_stateptr(symbol,dest);
470     strcpy(symbol,base);
471     if ( ASSETCHAINS_SYMBOL[0] != 0 && komodo_baseid(ASSETCHAINS_SYMBOL) < 0 )
472         return(0);
473     PENDING_KOMODO_TX = 0;
474     for (i=0; i<3; i++)
475     {
476         if ( komodo_isrealtime(&ht) != 0 )
477             break;
478         sleep(1);
479     }
480     if ( i == 3 )
481     {
482         if ( tokomodo == 0 )
483             printf("%s not realtime ht.%d\n",ASSETCHAINS_SYMBOL,ht);
484         return(0);
485     }
486     if ( tokomodo == 0 )
487     {
488         opcode = 'I';
489     }
490     else
491     {
492         opcode = 'X';
493         if ( 1 || komodo_paxtotal() == 0 )
494             return(0);
495     }
496     HASH_ITER(hh,PAX,pax,tmp)
497     {
498         if ( pax->type != 'D' && pax->type != 'A' )
499             continue;
500         {
501 #ifdef KOMODO_ASSETCHAINS_WAITNOTARIZE
502             if ( pax->height > 236000 )
503             {
504                 if ( kmdsp != 0 && kmdsp->NOTARIZED_HEIGHT >= pax->height )
505                     pax->validated = pax->komodoshis;
506                 else if ( kmdsp->CURRENT_HEIGHT > pax->height+30 )
507                     pax->validated = pax->ready = 0;
508             }
509             else
510             {
511                 if ( kmdsp != 0 && (kmdsp->NOTARIZED_HEIGHT >= pax->height || kmdsp->CURRENT_HEIGHT > pax->height+30) ) // assumes same chain as notarize
512                     pax->validated = pax->komodoshis;
513                 else pax->validated = pax->ready = 0;
514             }
515 #else
516             pax->validated = pax->komodoshis;
517 #endif
518         }
519         if ( ASSETCHAINS_SYMBOL[0] != 0 && (pax_fiatstatus(&available,&deposited,&issued,&withdrawn,&approved,&redeemed,symbol) != 0 || available < pax->fiatoshis) )
520         {
521             if ( pax->height > 214700 || strcmp(ASSETCHAINS_SYMBOL,symbol) == 0 )
522                 printf("miner.[%s]: skip %s %.8f when avail %.8f deposited %.8f, issued %.8f withdrawn %.8f approved %.8f redeemed %.8f\n",ASSETCHAINS_SYMBOL,symbol,dstr(pax->fiatoshis),dstr(available),dstr(deposited),dstr(issued),dstr(withdrawn),dstr(approved),dstr(redeemed));
523             continue;
524         }
525         /*printf("pax.%s marked.%d %.8f -> %.8f ready.%d validated.%d\n",pax->symbol,pax->marked,dstr(pax->komodoshis),dstr(pax->fiatoshis),pax->ready!=0,pax->validated!=0);
526         if ( pax->marked != 0 || (pax->type != 'D' && pax->type != 'A') || pax->ready == 0 )
527         {
528             printf("reject 2\n");
529             continue;
530         }*/
531         if ( ASSETCHAINS_SYMBOL[0] != 0 && (strcmp(pax->symbol,symbol) != 0 || pax->validated == 0 || pax->ready == 0) )
532         {
533             if ( strcmp(pax->symbol,ASSETCHAINS_SYMBOL) == 0 )
534                 printf("pax->symbol.%s != %s or null pax->validated %.8f ready.%d ht.(%d %d)\n",pax->symbol,symbol,dstr(pax->validated),pax->ready,kmdsp->CURRENT_HEIGHT,pax->height);
535             pax->marked = pax->height;
536             continue;
537         }
538         if ( pax->ready == 0 )
539             continue;
540         if ( pax->type == 'A' && ASSETCHAINS_SYMBOL[0] == 0 )
541         {
542             if ( kmdsp != 0 )
543             {
544                 if ( (baseid= komodo_baseid(pax->symbol)) < 0 || ((1LL << baseid) & sp->RTmask) == 0 )
545                 {
546                     printf("not RT for (%s) %llx baseid.%d %llx\n",pax->symbol,(long long)sp->RTmask,baseid,(long long)(1LL<<baseid));
547                     continue;
548                 }
549             } else continue;
550         }
551
552         //printf("redeem.%d? (%c) %p pax.%s marked.%d %.8f -> %.8f ready.%d validated.%d approved.%d\n",tokomodo,pax->type,pax,pax->symbol,pax->marked,dstr(pax->komodoshis),dstr(pax->fiatoshis),pax->ready!=0,pax->validated!=0,pax->approved!=0);
553         if ( 0 && ASSETCHAINS_SYMBOL[0] != 0 )
554             printf("pax.%s marked.%d %.8f -> %.8f\n",ASSETCHAINS_SYMBOL,pax->marked,dstr(pax->komodoshis),dstr(pax->fiatoshis));
555         if ( opcode == 'I' )
556         {
557             sum += pax->fiatoshis;
558             if ( sum > available )
559                 break;
560         }
561         txNew->vout.resize(numvouts+1);
562         txNew->vout[numvouts].nValue = (opcode == 'I') ? pax->fiatoshis : pax->komodoshis;
563         txNew->vout[numvouts].scriptPubKey.resize(25);
564         script = (uint8_t *)&txNew->vout[numvouts].scriptPubKey[0];
565         *script++ = 0x76;
566         *script++ = 0xa9;
567         *script++ = 20;
568         memcpy(script,pax->rmd160,20), script += 20;
569         *script++ = 0x88;
570         *script++ = 0xac;
571         if ( tokomodo == 0 )
572         {
573             for (i=0; i<32; i++)
574                 data[len++] = ((uint8_t *)&pax->txid)[i];
575             data[len++] = pax->vout & 0xff;
576             data[len++] = (pax->vout >> 8) & 0xff;
577             PENDING_KOMODO_TX += pax->fiatoshis;
578         }
579         else
580         {
581             len += komodo_rwapproval(1,&data[len],pax);
582             PENDING_KOMODO_TX += pax->komodoshis;
583             printf(" len.%d vout.%u DEPOSIT %.8f <- pax.%s pending ht %d %d %.8f | ",len,pax->vout,(double)txNew->vout[numvouts].nValue/COIN,symbol,pax->height,pax->otherheight,dstr(PENDING_KOMODO_TX));
584         }
585         if ( numvouts++ >= 64 )
586             break;
587     }
588     if ( numvouts > 1 )
589     {
590         if ( tokomodo != 0 )
591             strcpy(symbol,(char *)"KMD");
592         for (i=0; symbol[i]!=0; i++)
593             data[len++] = symbol[i];
594         data[len++] = 0;
595         for (i=0; i<len; i++)
596             printf("%02x",data[i]);
597         printf(" <- data[%d]\n",len);
598         opretlen = komodo_opreturnscript(opret,opcode,data,len);
599         txNew->vout.resize(numvouts+1);
600         txNew->vout[numvouts].nValue = 0;
601         txNew->vout[numvouts].scriptPubKey.resize(opretlen);
602         script = (uint8_t *)&txNew->vout[numvouts].scriptPubKey[0];
603         memcpy(script,opret,opretlen);
604         for (i=0; i<8; i++)
605             printf("%02x",opret[i]);
606         printf(" <- opret, MINER deposits.%d (%s) vouts.%d %.8f opretlen.%d\n",tokomodo,ASSETCHAINS_SYMBOL,numvouts,dstr(PENDING_KOMODO_TX),opretlen);
607         return(1);
608     }
609     return(0);
610 }
611
612 const char *banned_txids[] =
613 {
614     "78cb4e21245c26b015b888b14c4f5096e18137d2741a6de9734d62b07014dfca", //233559
615     "00697be658e05561febdee1aafe368b821ca33fbb89b7027365e3d77b5dfede5", //234172
616     "e909465788b32047c472d73e882d79a92b0d550f90be008f76e1edaee6d742ea", //234187
617     "f56c6873748a327d0b92b8108f8ec8505a2843a541b1926022883678fb24f9dc", //234188
618     "abf08be07d8f5b3a433ddcca7ef539e79a3571632efd6d0294ec0492442a0204", //234213
619     "3b854b996cc982fba8c06e76cf507ae7eed52ab92663f4c0d7d10b3ed879c3b0", //234367
620     "fa9e474c2cda3cb4127881a40eb3f682feaba3f3328307d518589024a6032cc4", //234635
621     "ca746fa13e0113c4c0969937ea2c66de036d20274efad4ce114f6b699f1bc0f3", //234662
622     "43ce88438de4973f21b1388ffe66e68fda592da38c6ef939be10bb1b86387041", //234697
623     "0aeb748de82f209cd5ff7d3a06f65543904c4c17387c9d87c65fd44b14ad8f8c", //234899
624     "bbd3a3d9b14730991e1066bd7c626ca270acac4127131afe25f877a5a886eb25", //235252
625     "fa9943525f2e6c32cbc243294b08187e314d83a2870830180380c3c12a9fd33c", //235253
626     "a01671c8775328a41304e31a6693bbd35e9acbab28ab117f729eaba9cb769461", //235265
627     "2ef49d2d27946ad7c5d5e4ab5c089696762ff04e855f8ab48e83bdf0cc68726d", //235295
628     "c85dcffb16d5a45bd239021ad33443414d60224760f11d535ae2063e5709efee", //235296
629 };
630
631 void komodo_bannedset(uint256 *array,int32_t max)
632 {
633     int32_t i;
634     for (i=0; i<sizeof(banned_txids)/sizeof(*banned_txids); i++)
635         array[i] = uint256S(banned_txids[i]);
636     if ( i != max )
637         printf("banned txid array error i.%d != max.%d\n",i,max);
638     //else printf("set %d banned txids\n",max);
639 }
640
641 void komodo_passport_iteration();
642
643 int32_t komodo_check_deposit(int32_t height,const CBlock& block) // verify above block is valid pax pricing
644 {
645     static uint256 array[15];
646     int32_t i,j,k,n,ht,baseid,txn_count,num,opretlen,offset=1,errs=0,matched=0,kmdheights[64],otherheights[64]; uint256 hash,txids[64]; char symbol[16],base[16]; uint16_t vouts[64]; int8_t baseids[64]; uint8_t *script,opcode,rmd160s[64*20]; uint64_t total,available,deposited,issued,withdrawn,approved,redeemed; int64_t values[64],srcvalues[64]; struct pax_transaction *pax; struct komodo_state *sp;
647     if ( *(int32_t *)&array[0] == 0 )
648         komodo_bannedset(array,(int32_t)(sizeof(array)/sizeof(*array)));
649     memset(baseids,0xff,sizeof(baseids));
650     memset(values,0,sizeof(values));
651     memset(srcvalues,0,sizeof(srcvalues));
652     memset(rmd160s,0,sizeof(rmd160s));
653     memset(kmdheights,0,sizeof(kmdheights));
654     memset(otherheights,0,sizeof(otherheights));
655     txn_count = block.vtx.size();
656     if ( ASSETCHAINS_SYMBOL[0] == 0 )
657     {
658         for (i=0; i<txn_count; i++)
659         {
660             n = block.vtx[i].vin.size();
661             for (j=0; j<n; j++)
662             {
663                 for (k=0; k<sizeof(array)/sizeof(*array); k++)
664                 {
665                     if ( block.vtx[i].vin[j].prevout.hash == array[k] && block.vtx[i].vin[j].prevout.n == 1 )
666                     {
667                         printf("banned tx.%d being used at ht.%d txi.%d vini.%d\n",k,height,i,j);
668                         return(-1);
669                     }
670                 }
671             }
672         }
673     }
674     n = block.vtx[0].vout.size();
675     script = (uint8_t *)block.vtx[0].vout[n-1].scriptPubKey.data();
676     if ( n <= 2 || script[0] != 0x6a )
677     {
678         int64_t val,prevtotal = 0; int32_t overflow = 0;
679         total = 0;
680         for (i=1; i<n; i++)
681         {
682             if ( (val= block.vtx[0].vout[i].nValue) < 0 || val >= MAX_MONEY )
683             {
684                 overflow = 1;
685                 break;
686             }
687             total += val;
688             if ( total < prevtotal || (val != 0 && total == prevtotal) )
689             {
690                 overflow = 1;
691                 break;
692             }
693             prevtotal = total;
694         }
695         if ( overflow != 0 || total > COIN/10 )
696         {
697             //fprintf(stderr,">>>>>>>> <<<<<<<<<< ht.%d illegal nonz output %.8f n.%d\n",height,dstr(block.vtx[0].vout[1].nValue),n);
698             if ( height >= 235300 )
699                 return(-1);
700         }
701         return(0);
702     }
703     
704     //fprintf(stderr,"ht.%d n.%d nValue %.8f (%d %d %d)\n",height,n,dstr(block.vtx[0].vout[1].nValue),KOMODO_PAX,komodo_isrealtime(&ht),KOMODO_PASSPORT_INITDONE);
705     offset += komodo_scriptitemlen(&opretlen,&script[offset]);
706     if ( ASSETCHAINS_SYMBOL[0] == 0 )
707     {
708         extern int32_t KOMODO_REWIND;
709         if ( KOMODO_REWIND < 0 )
710         {
711             fprintf(stderr,"rewind.%d\n",KOMODO_REWIND);
712             sleep(3);
713             KOMODO_REWIND = 0;
714         }
715         // 6a35506c65617365206d616b6520796f75722047697420636f6d6d6974206d65737361676573206d6f726520696e74657265737469 height.241778 checkdeposit n.4 [6a] [P] 80 vs 88
716         //for (i=0; i<opretlen; i++)
717         //    printf("%02x",script[i]);
718         //printf(" height.%d checkdeposit n.%d [%02x] [%c] %d vs %d\n",height,n,script[0],script[offset],script[offset],'X');
719         opcode = 'X';
720         if ( height >= 235300 )
721             return(-1);
722         strcpy(symbol,(char *)"KMD");
723         if ( komodo_isrealtime(&ht) == 0 || KOMODO_PASSPORT_INITDONE == 0 ) // init time already in DB
724             return(0);
725     }
726     else
727     {
728         strcpy(symbol,ASSETCHAINS_SYMBOL);
729         opcode = 'I';
730         if ( (baseid= komodo_baseid(symbol)) < 0 )
731         {
732             if ( block.vtx[0].vout.size() != 1 )
733             {
734                 printf("%s has more than one coinbase?\n",symbol);
735                 return(-1);
736             }
737             return(0);
738         }
739         while ( KOMODO_PASSPORT_INITDONE == 0 )
740             komodo_passport_iteration();
741         // grandfathering preexisting
742         if ( baseid == USD ) // 6820 in balance calcs
743         {
744             if ( height <= 2000 || height == 3275 || height == 3282 || height == 3328 || height == 3468 )
745             return(0);
746         }
747         else if ( baseid == EUR )
748         {
749             if ( height == 1313 || height == 1288 || height == 1263 || height == 1262 || height == 211 || height == 210 || height == 188 || height == 185 || height == 182 || height == 181 || height == 171 || height == 170 || height == 169 || height == 168 )
750                 return(0);
751         }
752         else if ( baseid == JPY )
753         {
754             if ( height == 1014 || height == 998 || height == 973 || height == 139 || height == 971 || height == 141 || height == 816 || height == 814 || height == 803 || height == 142 || height == 782 || height == 145 || height == 181 || height == 186 || height == 192 || height == 190 || height == 189 || height == 255 || height == 218 || height == 233 || height == 259 )
755                 return(0);
756         }
757         else if ( baseid == GBP )
758         {
759             if ( height == 997 || height == 970 || height == 953 || height == 951 || height == 803 || height == 800 || height == 786 || height == 123 || height == 771 || height == 137 || height == 139 || height == 140 || height == 146 || height == 194 || height == 200 || height == 202 || height == 203 || height == 205 )
760                 return(0);
761         }
762         else if ( baseid == AUD )
763         {
764             if ( height == 985 || height == 958 || height == 936 || height == 933 || height == 790 || height == 788 || height == 778 || height == 124 || height == 777 || height == 122 || height == 140 || height == 142 || height == 143 || height == 186 )
765                 return(0);
766         }
767         else if ( baseid == CAD )
768         {
769             if ( height == 1181 || height == 1179 || height == 1159 || height == 1134 || height == 1132 || height == 121 || height == 970 || height == 119 || height == 299 || height == 302 || height == 303 || height == 306 || height == 308 || height == 355 || height == 362 || height == 367 || height == 363 || height == 364 )
770                 return(0);
771         }
772         else if ( baseid == CHF )
773         {
774             if ( height == 960 || height == 931 || height == 914 || height == 122 || height == 912 || height == 141 || height == 780 || height == 145 || height == 777 || height == 151 || height == 775 || height == 765 || height == 195 || height == 764 || height == 737 || height == 194 || height == 193 || height == 198 || height == 207 || height == 216 || height == 227 || height == 256 )
775                 return(0);
776         }
777         else if ( baseid == NZD )
778         {
779             if ( height == 1113 || height == 1083 || height == 1067 || height == 265 || height == 1064 || height == 920 || height == 913 || height == 124 || height == 911 || height == 903 || height == 900 || height == 879 || height == 122 || height == 266 || height == 269 || height == 270 || height == 278 || height == 307 || height == 318 )
780                 return(0);
781         }
782         else if ( baseid == CNY )
783         {
784             if ( height == 982 || height == 957 || height == 931 || height == 119 || height == 929 || height == 134 || height == 782 || height == 137 || height == 775 || height == 143 || height == 772 || height == 186 || height == 763 || height == 761 || height == 734 || height == 183 || height == 190 || height == 192 || height == 211 || height == 203 || height == 226 || height == 263 )
785                 return(0);
786         }
787         else if ( baseid == RUB )
788         {
789             if ( height == 1074 || height == 1040 || height == 1014 || height == 163 || height == 1013 || height == 877 || height == 867 || height == 863 || height == 834 || height == 158 || height == 126 || height == 106 || height == 105 || height == 174 || height == 175 || height == 176 )
790                 return(0);
791         }
792         else if ( baseid == MXN )
793         {
794             if ( height == 1069 || height == 1048 || height == 1028 || height == 121 || height == 1027 || height == 146 || height == 894 || height == 891 || height == 148 || height == 882 || height == 879 || height == 151 || height == 856 || height == 158 || height == 822 || height == 197 || height == 203 || height == 207 || height == 209 || height == 213 || height == 217 || height == 218 || height == 226 )
795                 return(0);
796         }
797         else if ( baseid == BRL )
798         {
799             if ( height == 972 || height == 943 || height == 922 || height == 118 || height == 920 || height == 145 || height == 787 || height == 783 || height == 147 || height == 781 || height == 774 || height == 148 || height == 771 || height == 154 || height == 751 || height == 156 || height == 188 || height == 193 || height == 195 || height == 199 || height == 203 || height == 225 || height == 230 )
800                 return(0);
801         }
802         else if ( baseid == INR )
803         {
804             if ( height == 788 || height == 786 || height == 775 || height == 753 || height == 125 || height == 153 || height == 155 || height == 159 || height == 204 || height == 206 || height == 211 || height == 217 )
805                 return(0);
806         }
807         else if ( baseid == PLN )
808         {
809             if ( height == 1009 || height == 984 || height == 960 || height == 959 || height == 798 || height == 794 || height == 792 || height == 782 || height == 775 || height == 755 || height == 122 || height == 120 || height == 158 || height == 160 || height == 163 || height == 225 || height == 217 || height == 219 )
810                 return(0);
811         }
812         else if ( baseid == HKD )
813         {
814             if ( height == 1002 || height == 979 || height == 947 || height == 123 || height == 946 || height == 153 || height == 811 || height == 808 || height == 806 || height == 155 || height == 795 || height == 157 || height == 773 || height == 205 || height == 208 || height == 210 || height == 211 || height == 215 || height == 221 || height == 231 )
815                 return(0);
816         }
817         else if ( baseid == TRY )
818         {
819             if ( height == 991 || height == 974 || height == 949 || height == 141 || height == 948 || height == 783 || height == 153 || height == 781 || height == 779 || height == 776 || height == 768 || height == 765 || height == 121 || height == 142 || height == 144 || height == 143 || height == 149 || height == 204 )
820                 return(0);
821         }
822         else if ( baseid == NOK )
823         {
824             if ( height == 962 || height == 911 || height == 907 || height == 125 || height == 765 || height == 150 || height == 762 || height == 760 || height == 753 || height == 152 || height == 751 || height == 151 || height == 154 || height == 160 || height == 195 || height == 203 || height == 207 || height == 211 )
825                 return(0);
826         }
827         else if ( baseid == ZAR )
828         {
829             if ( height == 956 || height == 937 || height == 906 || height == 905 || height == 122 || height == 756 || height == 754 || height == 752 || height == 749 || height == 742 || height == 739 || height == 120 || height == 151 || height == 153 || height == 157 || height == 159 || height == 206 || height == 213 )
830                 return(0);
831         }
832         else if ( baseid == SEK )
833         {
834             if ( height == 943 || height == 925 || height == 896 || height == 147 || height == 894 || height == 759 || height == 751 || height == 749 || height == 742 || height == 740 || height == 716 || height == 123 || height == 148 || height == 150 || height == 151 || height == 157 || height == 199 || height == 200 )
835                 return(0);
836         }
837         else if ( baseid == CZK )
838         {
839             if ( height == 1079 || height == 1054 || height == 1032 || height == 121 || height == 1030 || height == 182 || height == 876 || height == 873 || height == 871 || height == 184 || height == 862 || height == 185 || height == 861 || height == 186 || height == 838 || height == 238 || height == 242 || height == 246 || height == 248 || height == 250 || height == 251 || height == 256 || height == 282 )
840                 return(0);
841         }
842         else if ( baseid == HUF )
843         {
844             if ( height == 2378 || height == 2376 || height == 2371 || height == 1330 || height == 2326 || height == 1344 || height == 2305 || height == 2304 || height == 2171 || height == 2168 || height == 2166 || height == 2156 || height == 2135 || height == 1343 || height == 1342 || height == 1341 || height == 1340 || height == 1339 || height == 1336 || height == 1334 )
845                 return(0);
846         }
847         else if ( baseid == DKK )
848         {
849             if ( height == 1214 || height == 1186 || height == 1158 || height == 126 || height == 1156 || height == 329 || height == 1021 || height == 1016 || height == 1014 || height == 333 || height == 1003 || height == 1002 || height == 978 || height == 332 || height == 337 || height == 381 || height == 390 || height == 386 || height == 401 || height == 389 )
850                 return(0);
851         }
852         else if ( baseid == ILS )
853         {
854             if ( height == 1010 || height == 985 || height == 954 || height == 120 || height == 952 || height == 143 || height == 819 || height == 817 || height == 808 || height == 145 || height == 786 || height == 155 || height == 753 || height == 151 || height == 149 || height == 199 || height == 193 || height == 201 || height == 209 )
855                 return(0);
856         }
857         else if ( baseid == MYR )
858         {
859             if ( height == 1015 || height == 984 || height == 950 || height == 949 || height == 823 || height == 820 || height == 818 || height == 812 || height == 809 || height == 126 || height == 789 || height == 144 || height == 746 || height == 146 || height == 147 || height == 148 || height == 150 || height == 205 || height == 210 || height == 215 )
860                 return(0);
861         }
862         else if ( baseid == PHP )
863         {
864             if ( height == 1154 || height == 1114 || height == 1077 || height == 1076 || height == 931 || height == 927 || height == 925 || height == 918 || height == 891 || height == 127 || height == 125 || height == 272 || height == 275 || height == 276 || height == 278 )
865                 return(0);
866         }
867         else if ( baseid == KRW )
868         {
869             if ( height == 1010 || height == 950 || height == 916 || height == 138 || height == 914 || height == 140 || height == 785 || height == 782 || height == 781 || height == 142 || height == 775 || height == 148 || height == 772 || height == 751 || height == 147 || height == 146 || height == 159 || height == 175 || height == 181 || height == 184 )
870                 return(0);
871         }
872         else if ( baseid == RON )
873         {
874             if ( height == 1003 || height == 973 || height == 940 || height == 939 || height == 806 || height == 802 || height == 800 || height == 793 || height == 789 || height == 768 || height == 123 || height == 141 || height == 143 || height == 144 || height == 150 || height == 197 )
875                 return(0);
876         }
877         else if ( baseid == SGD )
878         {
879             if ( height == 1010 || height == 984 || height == 951 || height == 950 || height == 801 || height == 798 || height == 792 || height == 788 || height == 122 || height == 769 || height == 120 || height == 158 || height == 160 || height == 164 || height == 169 || height == 229 || height == 234 || height == 246 )
880                 return(0);
881         }
882         else if ( baseid == THB )
883         {
884             if ( height == 968 || height == 933 || height == 898 || height == 897 || height == 788 || height == 786 || height == 779 || height == 777 || height == 757 || height == 119 || height == 140 || height == 142 || height == 146 || height == 152 )
885                 return(0);
886         }
887         else if ( baseid == BGN )
888         {
889             if ( height == 1030 || height == 995 || height == 960 || height == 959 || height == 830 || height == 822 || height == 819 || height == 810 || height == 809 || height == 781 || height == 124 || height == 122 || height == 189 || height == 193 || height == 200 || height == 194 )
890                 return(0);
891         }
892         else if ( baseid == HRK )
893         {
894             if ( height == 1022 || height == 999 || height == 969 || height == 967 || height == 832 || height == 829 || height == 827 || height == 817 || height == 792 || height == 754 || height == 125 || height == 123 || height == 184 || height == 186 || height == 187 || height == 227 || height == 230 )
895                 return(0);
896         }
897         else if ( baseid == IDR )
898         {
899             if ( height == 720 || height == 715 || height == 714 || height == 696 || height == 695 || height == 694 || height == 693 || height == 119 || height == 689 || height == 120 || height == 669 || height == 123 || height == 662 || height == 122 || height == 634 || height == 121 || height == 609 || height == 124 || height == 174 || height == 603 || height == 595 || height == 166 || height == 176 || height == 589 || height == 172 || height == 587 || height == 179 )
900                 return(0);
901         }
902     }
903     if ( script[offset] == opcode && opretlen < block.vtx[0].vout[n-1].scriptPubKey.size() )
904     {
905         if ( (num= komodo_issued_opreturn(base,txids,vouts,values,srcvalues,kmdheights,otherheights,baseids,rmd160s,&script[offset],opretlen,opcode == 'X')) > 0 )
906         {
907             for (i=1; i<n-1; i++)
908             {
909                 if ( (sp= komodo_stateptrget(CURRENCIES[baseids[i-1]])) != 0 && (sp->RTmask & (1LL << baseids[i-1])) == 0 )
910                 {
911                     /*printf("skip checkdeposit.%s not RT %llx\n",CURRENCIES[baseids[i-1]],(long long)sp->RTmask);
912                     matched++;
913                     continue;*/
914                 }
915                 if ( (pax= komodo_paxfinds(txids[i-1],vouts[i-1])) != 0 ) // finds... make sure right one
916                 {
917                     pax->type = opcode;
918                     if ( opcode == 'I' && (pax_fiatstatus(&available,&deposited,&issued,&withdrawn,&approved,&redeemed,symbol) != 0 || available < pax->fiatoshis) )
919                     {
920                         printf("checkdeposit.[%s.%d]: skip %s %.8f when avail %.8f deposited %.8f, issued %.8f withdrawn %.8f approved %.8f redeemed %.8f\n",ASSETCHAINS_SYMBOL,height,symbol,dstr(pax->fiatoshis),dstr(available),dstr(deposited),dstr(issued),dstr(withdrawn),dstr(approved),dstr(redeemed));
921                         return(-1);
922                     }
923                     if ( pax->fiatoshis == block.vtx[0].vout[i].nValue )
924                     {
925                         matched++;
926                         if ( pax->marked != 0 && height >= 80820 )
927                         {
928                             printf(">>>>>>>>>>> %c errs.%d i.%d match %.8f vs %.8f paxmarked.%d kht.%d ht.%d\n",opcode,errs,i,dstr(opcode == 'I' ? pax->fiatoshis : pax->komodoshis),dstr(block.vtx[0].vout[i].nValue),pax->marked,pax->height,pax->otherheight);
929                         }
930                         else
931                         {
932                         }
933                         if ( strcmp(ASSETCHAINS_SYMBOL,CURRENCIES[baseids[i-1]]) == 0 )
934                             printf("check deposit validates %s.%d [%d] %.8f -> %.8f (%.8f %.8f %.8f)\n",CURRENCIES[baseids[i-1]],height,i,dstr(srcvalues[i-1]),dstr(values[i-1]),dstr(pax->komodoshis),dstr(pax->fiatoshis),dstr(block.vtx[0].vout[i].nValue));
935                     }
936                     else
937                     {
938                         for (j=0; j<32; j++)
939                             printf("%02x",((uint8_t *)&txids[i-1])[j]);
940                         printf(" cant paxfind %c txid\n",opcode);
941                         printf(">>>>>>>>>>> %c errs.%d i.%d match %.8f vs %.8f pax.%p\n",opcode,errs,i,dstr(opcode == 'I' ? pax->fiatoshis : pax->komodoshis),dstr(block.vtx[0].vout[i].nValue),pax);
942                     }
943                 }
944                 else if ( kmdheights[i-1] > 0 && otherheights[i-1] > 0 )
945                 {
946                     hash = block.GetHash();
947                     for (j=0; j<32; j++)
948                         printf("%02x",((uint8_t *)&hash)[j]);
949                     printf(" kht.%d ht.%d %.8f %.8f blockhash couldnt find vout.[%d]\n",kmdheights[i-1],otherheights[i-1],dstr(values[i-1]),dstr(srcvalues[i]),i);
950                 }
951             }
952             if ( ASSETCHAINS_SYMBOL[0] == 0 )
953             {
954                 if ( height > 0 && (height < chainActive.Tip()->nHeight || (height >= chainActive.Tip()->nHeight && komodo_isrealtime(&ht) != 0)) && matched != num )
955                 {
956                     printf("WOULD REJECT %s: ht.%d (%c) matched.%d vs num.%d tip.%d isRT.%d\n",symbol,height,opcode,matched,num,(int32_t)chainActive.Tip()->nHeight,komodo_isrealtime(&ht));
957                     // can easily happen depending on order of loading
958                     if ( height > 200000 )
959                     {
960                         printf("REJECT: ht.%d (%c) matched.%d vs num.%d\n",height,opcode,matched,num);
961                         return(-1);
962                     }
963                 }
964             }
965             else
966             {
967                 if ( height > 0 && (height < chainActive.Tip()->nHeight || (height >= chainActive.Tip()->nHeight && komodo_isrealtime(&ht) != 0)) && matched != num )
968                 {
969                     printf("REJECT %s: ht.%d (%c) matched.%d vs num.%d tip.%d isRT.%d\n",symbol,height,opcode,matched,num,(int32_t)chainActive.Tip()->nHeight,komodo_isrealtime(&ht));
970                     return(-1);
971                 }
972             }
973         }
974         else
975         {
976             /*int64_t val,prevtotal = 0; int32_t overflow = 0;
977             total = 0;
978             for (i=1; i<n; i++)
979             {
980                 if ( (val= block.vtx[0].vout[i].nValue) < 0 || val >= MAX_MONEY )
981                 {
982                     overflow = 1;
983                     break;
984                 }
985                 total += val;
986                 if ( total < prevtotal || (val != 0 && total == prevtotal) )
987                 {
988                     overflow = 1;
989                     break;
990                 }
991                 prevtotal = total;
992             }
993             if ( overflow != 0 || total > COIN/10 )
994             {
995                 for (i=0; i<opretlen&&i<100; i++)
996                     printf("%02x",script[i]);
997                 printf(" script.[%d] ",opretlen);
998                 for (i=0; i<n; i++)
999                     printf("%.8f ",dstr(block.vtx[0].vout[i].nValue));
1000                 printf("no opreturn entries to check ht.%d %s\n",height,ASSETCHAINS_SYMBOL);
1001                 return(-1);
1002             } else return(0);*/
1003             for (i=0; i<n; i++)
1004                 printf("%.8f ",dstr(block.vtx[0].vout[i].nValue));
1005             printf("no opreturn entries to check ht.%d %s\n",height,ASSETCHAINS_SYMBOL);
1006             return(-1);
1007         }
1008         //printf("opretlen.%d num.%d\n",opretlen,num);
1009     }
1010     else
1011     {
1012         for (i=0; i<opretlen&&i<100; i++)
1013             printf("%02x",script[i]);
1014         printf(" height.%d checkdeposit n.%d [%02x] [%c] %d len.%d ",height,n,script[0],script[offset],script[offset],opretlen);
1015         printf("not proper vout with opreturn format %s ht.%d\n",ASSETCHAINS_SYMBOL,height);
1016 exit(-1);
1017         return(-1);
1018     }
1019     return(0);
1020 }
1021
1022 const char *komodo_opreturn(int32_t height,uint64_t value,uint8_t *opretbuf,int32_t opretlen,uint256 txid,uint16_t vout,char *source)
1023 {
1024     uint8_t rmd160[20],rmd160s[64*20],addrtype,shortflag,pubkey33[33]; int32_t didstats,i,j,n,kvheight,len,tokomodo,kmdheight,otherheights[64],kmdheights[64]; int8_t baseids[64]; char base[4],coinaddr[64],destaddr[64]; uint256 txids[64]; uint16_t vouts[64]; uint64_t convtoshis,seed; int64_t fee,fiatoshis,komodoshis,checktoshis,values[64],srcvalues[64]; struct pax_transaction *pax,*pax2; struct komodo_state *basesp; double diff; 
1025     const char *typestr = "unknown";
1026     if ( ASSETCHAINS_SYMBOL[0] != 0 && komodo_baseid(ASSETCHAINS_SYMBOL) < 0 && opretbuf[0] != 'K' )
1027     {
1028         //printf("komodo_opreturn skip %s\n",ASSETCHAINS_SYMBOL);
1029         return("assetchain");
1030     }
1031     //else if ( KOMODO_PAX == 0 )
1032     //    return("nopax");
1033     memset(baseids,0xff,sizeof(baseids));
1034     memset(values,0,sizeof(values));
1035     memset(srcvalues,0,sizeof(srcvalues));
1036     memset(rmd160s,0,sizeof(rmd160s));
1037     memset(kmdheights,0,sizeof(kmdheights));
1038     memset(otherheights,0,sizeof(otherheights));
1039     tokomodo = (komodo_is_issuer() == 0);
1040     if ( opretbuf[0] == 'K' && opretlen != 40 )
1041     {
1042         komodo_kvupdate(opretbuf,opretlen,value);
1043     }
1044     else if ( opretbuf[0] == 'D' )
1045     {
1046         tokomodo = 0;
1047         if ( opretlen == 38 ) // any KMD tx
1048         {
1049             iguana_rwnum(0,&opretbuf[34],sizeof(kmdheight),&kmdheight);
1050             memset(base,0,sizeof(base));
1051             PAX_pubkey(0,&opretbuf[1],&addrtype,rmd160,base,&shortflag,&fiatoshis);
1052             bitcoin_address(coinaddr,addrtype,rmd160,20);
1053             checktoshis = PAX_fiatdest(&seed,tokomodo,destaddr,pubkey33,coinaddr,kmdheight,base,fiatoshis);
1054             typestr = "deposit";
1055             if ( strcmp(base,ASSETCHAINS_SYMBOL) == 0 && (kmdheight > 195000 || kmdheight <= height) )
1056             {
1057                 didstats = 0;
1058                 if ( 0 && kmdheight > 214700 && strcmp(base,ASSETCHAINS_SYMBOL) == 0 )
1059                 {
1060                     printf("(%s) (%s) kmdheight.%d vs height.%d check %.8f vs %.8f tokomodo.%d %d seed.%llx\n",ASSETCHAINS_SYMBOL,base,kmdheight,height,dstr(checktoshis),dstr(value),komodo_is_issuer(),strncmp(ASSETCHAINS_SYMBOL,base,strlen(base)) == 0,(long long)seed);
1061                     for (i=0; i<32; i++)
1062                         printf("%02x",((uint8_t *)&txid)[i]);
1063                     printf(" <- txid.v%u ",vout);
1064                     for (i=0; i<33; i++)
1065                         printf("%02x",pubkey33[i]);
1066                     printf(" checkpubkey check %.8f v %.8f dest.(%s) kmdheight.%d height.%d\n",dstr(checktoshis),dstr(value),destaddr,kmdheight,height);
1067                 }
1068                 if ( komodo_paxcmp(base,kmdheight,value,checktoshis,kmdheight < 225000 ? seed : 0) == 0 )
1069                 {
1070                     if ( (pax= komodo_paxfind(txid,vout,'D')) == 0 )
1071                     {
1072                         if ( (basesp= komodo_stateptrget(base)) != 0 )
1073                         {
1074                             basesp->deposited += fiatoshis;
1075                             didstats = 1;
1076                             if ( 0 && strcmp(base,ASSETCHAINS_SYMBOL) == 0 )
1077                                 printf("########### %p deposited %s += %.8f kmdheight.%d %.8f\n",basesp,base,dstr(fiatoshis),kmdheight,dstr(value));
1078                         } else printf("cant get stateptr.(%s)\n",base);
1079                         komodo_gateway_deposit(coinaddr,value,base,fiatoshis,rmd160,txid,vout,'D',kmdheight,height,(char *)"KMD",0);
1080                     }
1081                     if ( (pax= komodo_paxfind(txid,vout,'D')) != 0 )
1082                     {
1083                         pax->height = kmdheight;
1084                         pax->validated = value;
1085                         pax->komodoshis = value;
1086                         pax->fiatoshis = fiatoshis;
1087                         if ( didstats == 0 && pax->didstats == 0 )
1088                         {
1089                             if ( (basesp= komodo_stateptrget(base)) != 0 )
1090                             {
1091                                 basesp->deposited += fiatoshis;
1092                                 didstats = 1;
1093                                 if ( 0 && strcmp(base,ASSETCHAINS_SYMBOL) == 0 )
1094                                     printf("########### %p depositedB %s += %.8f/%.8f kmdheight.%d/%d %.8f/%.8f\n",basesp,base,dstr(fiatoshis),dstr(pax->fiatoshis),kmdheight,pax->height,dstr(value),dstr(pax->komodoshis));
1095                             }
1096                         } //
1097                         if ( didstats != 0 )
1098                             pax->didstats = 1;
1099                         if ( (pax2= komodo_paxfind(txid,vout,'I')) != 0 )
1100                         {
1101                             pax2->fiatoshis = pax->fiatoshis;
1102                             pax2->komodoshis = pax->komodoshis;
1103                             pax->marked = pax2->marked = pax->height;
1104                             pax2->height = pax->height = height;
1105                             if ( pax2->didstats == 0 )
1106                             {
1107                                 if ( (basesp= komodo_stateptrget(base)) != 0 )
1108                                 {
1109                                     basesp->issued += pax2->fiatoshis;
1110                                     pax2->didstats = 1;
1111                                     if ( 0 && strcmp(base,ASSETCHAINS_SYMBOL) == 0 )
1112                                         printf("########### %p issueda %s += %.8f kmdheight.%d %.8f other.%d\n",basesp,base,dstr(pax2->fiatoshis),pax2->height,dstr(pax2->komodoshis),pax2->otherheight);
1113                                 }
1114                             }
1115                         }
1116                     }
1117                 }
1118                 else
1119                 {
1120                     if ( (pax= komodo_paxfind(txid,vout,'D')) != 0 )
1121                         pax->marked = checktoshis;
1122                     if ( kmdheight > 238000 && (kmdheight > 214700 || strcmp(base,ASSETCHAINS_SYMBOL) == 0) ) //seed != 0 &&
1123                         printf("pax %s deposit %.8f rejected kmdheight.%d %.8f KMD check %.8f seed.%llu\n",base,dstr(fiatoshis),kmdheight,dstr(value),dstr(checktoshis),(long long)seed);
1124                 }
1125             } //else printf("paxdeposit height.%d vs kmdheight.%d\n",height,kmdheight);
1126         }
1127     }
1128     else if ( opretbuf[0] == 'I' )
1129     {
1130         tokomodo = 0;
1131         if ( strncmp((char *)"KMD",(char *)&opretbuf[opretlen-4],3) != 0 && strncmp(ASSETCHAINS_SYMBOL,(char *)&opretbuf[opretlen-4],3) == 0 )
1132         {
1133             if ( (n= komodo_issued_opreturn(base,txids,vouts,values,srcvalues,kmdheights,otherheights,baseids,rmd160s,opretbuf,opretlen,0)) > 0 )
1134             {
1135                 for (i=0; i<n; i++)
1136                 {
1137                     if ( baseids[i] < 0 )
1138                     {
1139                         printf("%d of %d illegal baseid.%d\n",i,n,baseids[i]);
1140                         continue;
1141                     }
1142                     bitcoin_address(coinaddr,60,&rmd160s[i*20],20);
1143                     komodo_gateway_deposit(coinaddr,0,0,0,0,txids[i],vouts[i],'I',height,0,CURRENCIES[baseids[i]],0);
1144                     komodo_paxmark(height,txids[i],vouts[i],'I',height);
1145                     if ( (pax= komodo_paxfind(txids[i],vouts[i],'I')) != 0 )
1146                     {
1147                         pax->type = opretbuf[0];
1148                         strcpy(pax->source,(char *)&opretbuf[opretlen-4]);
1149                         if ( (pax2= komodo_paxfind(txids[i],vouts[i],'D')) != 0 && pax2->fiatoshis != 0 && pax2->komodoshis != 0 )
1150                         {
1151                             // realtime path?
1152                             pax->fiatoshis = pax2->fiatoshis;
1153                             pax->komodoshis = pax2->komodoshis;
1154                             pax->marked = pax2->marked = pax2->height;
1155                             if ( pax->didstats == 0 )
1156                             {
1157                                 if ( (basesp= komodo_stateptrget(CURRENCIES[baseids[i]])) != 0 )
1158                                 {
1159                                     basesp->issued += pax->fiatoshis;
1160                                     pax->didstats = 1;
1161                                     pax->height = pax2->height;
1162                                     pax->otherheight = height;
1163                                     if ( 0 && strcmp(CURRENCIES[baseids[i]],ASSETCHAINS_SYMBOL) == 0 )
1164                                         printf("########### %p issuedb %s += %.8f kmdheight.%d %.8f other.%d\n",basesp,CURRENCIES[baseids[i]],dstr(pax->fiatoshis),pax->height,dstr(pax->komodoshis),pax->otherheight);
1165                                 }
1166                             }
1167                         }
1168                     }
1169                     if ( (pax= komodo_paxmark(height,txids[i],vouts[i],'I',height)) != 0 )
1170                         komodo_paxdelete(pax);
1171                     if ( (pax= komodo_paxmark(height,txids[i],vouts[i],'D',height)) != 0 )
1172                         komodo_paxdelete(pax);
1173                 }
1174             } //else printf("opreturn none issued?\n");
1175         }
1176     }
1177     else if ( height < 236000 && opretbuf[0] == 'W' && strncmp(ASSETCHAINS_SYMBOL,(char *)&opretbuf[opretlen-4],3) == 0 )//&& opretlen >= 38 )
1178     {
1179         if ( komodo_baseid((char *)&opretbuf[opretlen-4]) >= 0 && strcmp(ASSETCHAINS_SYMBOL,(char *)&opretbuf[opretlen-4]) == 0 )
1180         {
1181             for (i=0; i<opretlen; i++)
1182                 printf("%02x",opretbuf[i]);
1183             printf(" [%s] reject obsolete withdraw request.%s\n",ASSETCHAINS_SYMBOL,(char *)&opretbuf[opretlen-4]);
1184             return(typestr);
1185         }
1186         tokomodo = 1;
1187         iguana_rwnum(0,&opretbuf[34],sizeof(kmdheight),&kmdheight);
1188         memset(base,0,sizeof(base));
1189         PAX_pubkey(0,&opretbuf[1],&addrtype,rmd160,base,&shortflag,&komodoshis);
1190         bitcoin_address(coinaddr,addrtype,rmd160,20);
1191         checktoshis = PAX_fiatdest(&seed,tokomodo,destaddr,pubkey33,coinaddr,kmdheight,base,value);
1192         typestr = "withdraw";
1193         //printf(" [%s] WITHDRAW %s.height.%d vs height.%d check %.8f/%.8f vs %.8f tokomodo.%d %d seed.%llx -> (%s) len.%d\n",ASSETCHAINS_SYMBOL,base,kmdheight,height,dstr(checktoshis),dstr(komodoshis),dstr(value),komodo_is_issuer(),strncmp(ASSETCHAINS_SYMBOL,base,strlen(base)) == 0,(long long)seed,coinaddr,opretlen);
1194         didstats = 0;
1195         //if ( komodo_paxcmp(base,kmdheight,komodoshis,checktoshis,seed) == 0 )
1196         {
1197             if ( value != 0 && ((pax= komodo_paxfind(txid,vout,'W')) == 0 || pax->didstats == 0) )
1198             {
1199                 if ( (basesp= komodo_stateptrget(base)) != 0 )
1200                 {
1201                     basesp->withdrawn += value;
1202                     didstats = 1;
1203                     if ( strcmp(base,ASSETCHAINS_SYMBOL) == 0 )
1204                         printf("########### %p withdrawn %s += %.8f check %.8f\n",basesp,base,dstr(value),dstr(checktoshis));
1205                 }
1206                 if ( 0 && strcmp(base,"RUB") == 0 && (pax == 0 || pax->approved == 0) )
1207                     printf("notarize %s %.8f -> %.8f kmd.%d other.%d\n",ASSETCHAINS_SYMBOL,dstr(value),dstr(komodoshis),kmdheight,height);
1208             }
1209             komodo_gateway_deposit(coinaddr,0,(char *)"KMD",value,rmd160,txid,vout,'W',kmdheight,height,source,0);
1210             if ( (pax= komodo_paxfind(txid,vout,'W')) != 0 )
1211             {
1212                 pax->type = opretbuf[0];
1213                 strcpy(pax->source,base);
1214                 strcpy(pax->symbol,"KMD");
1215                 pax->height = kmdheight;
1216                 pax->otherheight = height;
1217                 pax->komodoshis = komodoshis;
1218             }
1219         } // else printf("withdraw %s paxcmp ht.%d %d error value %.8f -> %.8f vs %.8f\n",base,kmdheight,height,dstr(value),dstr(komodoshis),dstr(checktoshis));
1220         // need to allocate pax
1221     }
1222     else if ( height < 236000 && tokomodo != 0 && opretbuf[0] == 'A' && ASSETCHAINS_SYMBOL[0] == 0 )
1223     {
1224         tokomodo = 1;
1225         if ( 0 && ASSETCHAINS_SYMBOL[0] != 0 )
1226         {
1227             for (i=0; i<opretlen; i++)
1228                 printf("%02x",opretbuf[i]);
1229             printf(" opret[%c] else path tokomodo.%d ht.%d before %.8f opretlen.%d\n",opretbuf[0],tokomodo,height,dstr(komodo_paxtotal()),opretlen);
1230         }
1231         if ( (n= komodo_issued_opreturn(base,txids,vouts,values,srcvalues,kmdheights,otherheights,baseids,rmd160s,opretbuf,opretlen,1)) > 0 )
1232         {
1233             for (i=0; i<n; i++)
1234             {
1235                 //for (j=0; j<32; j++)
1236                 //    printf("%02x",((uint8_t *)&txids[i])[j]);
1237                 //printf(" v%d %.8f %.8f k.%d ht.%d base.%d\n",vouts[i],dstr(values[i]),dstr(srcvalues[i]),kmdheights[i],otherheights[i],baseids[i]);
1238                 if ( baseids[i] < 0 )
1239                 {
1240                     for (i=0; i<opretlen; i++)
1241                         printf("%02x",opretbuf[i]);
1242                     printf(" opret[%c] else path tokomodo.%d ht.%d before %.8f opretlen.%d\n",opretbuf[0],tokomodo,height,dstr(komodo_paxtotal()),opretlen);
1243                     //printf("baseids[%d] %d\n",i,baseids[i]);
1244                     if ( (pax= komodo_paxfind(txids[i],vouts[i],'W')) != 0 || (pax= komodo_paxfind(txids[i],vouts[i],'X')) != 0 )
1245                     {
1246                         baseids[i] = komodo_baseid(pax->symbol);
1247                         printf("override neg1 with (%s)\n",pax->symbol);
1248                     }
1249                     if ( baseids[i] < 0 )
1250                         continue;
1251                 }
1252                 didstats = 0;
1253                 seed = 0;
1254                 checktoshis = komodo_paxprice(&seed,kmdheights[i],CURRENCIES[baseids[i]],(char *)"KMD",(uint64_t)values[i]);
1255                 //printf("PAX_fiatdest ht.%d price %s %.8f -> KMD %.8f vs %.8f\n",kmdheights[i],CURRENCIES[baseids[i]],(double)values[i]/COIN,(double)srcvalues[i]/COIN,(double)checktoshis/COIN);
1256                 if ( srcvalues[i] == checktoshis )
1257                 {
1258                     if ( (pax= komodo_paxfind(txids[i],vouts[i],'A')) == 0 )
1259                     {
1260                         bitcoin_address(coinaddr,60,&rmd160s[i*20],20);
1261                         komodo_gateway_deposit(coinaddr,srcvalues[i],CURRENCIES[baseids[i]],values[i],&rmd160s[i*20],txids[i],vouts[i],'A',kmdheights[i],otherheights[i],CURRENCIES[baseids[i]],kmdheights[i]);
1262                         if ( (pax= komodo_paxfind(txids[i],vouts[i],'A')) == 0 )
1263                             printf("unexpected null pax for approve\n");
1264                         else pax->validated = checktoshis;
1265                         if ( (pax2= komodo_paxfind(txids[i],vouts[i],'W')) != 0 )
1266                             pax2->approved = kmdheights[i];
1267                         komodo_paxmark(height,txids[i],vouts[i],'W',height);
1268                         //komodo_paxmark(height,txids[i],vouts[i],'A',height);
1269                         if ( values[i] != 0 && (basesp= komodo_stateptrget(CURRENCIES[baseids[i]])) != 0 )
1270                         {
1271                             basesp->approved += values[i];
1272                             didstats = 1;
1273                             printf("pax.%p ########### %p approved %s += %.8f -> %.8f/%.8f kht.%d %d\n",pax,basesp,CURRENCIES[baseids[i]],dstr(values[i]),dstr(srcvalues[i]),dstr(checktoshis),kmdheights[i],otherheights[i]);
1274                         }
1275                         //printf(" i.%d (%s) <- %.8f ADDFLAG APPROVED\n",i,coinaddr,dstr(values[i]));
1276                     }
1277                     else if ( pax->didstats == 0 && srcvalues[i] != 0 )
1278                     {
1279                         if ( (basesp= komodo_stateptrget(CURRENCIES[baseids[i]])) != 0 )
1280                         {
1281                             basesp->approved += values[i];
1282                             didstats = 1;
1283                             printf("pax.%p ########### %p approved %s += %.8f -> %.8f/%.8f kht.%d %d\n",pax,basesp,CURRENCIES[baseids[i]],dstr(values[i]),dstr(srcvalues[i]),dstr(checktoshis),kmdheights[i],otherheights[i]);
1284                         }
1285                     } //else printf(" i.%d of n.%d pax.%p baseids[] %d\n",i,n,pax,baseids[i]);
1286                     if ( (pax= komodo_paxfind(txids[i],vouts[i],'A')) != 0 )
1287                     {
1288                         pax->type = opretbuf[0];
1289                         pax->approved = kmdheights[i];
1290                         pax->validated = checktoshis;
1291                         if ( didstats != 0 )
1292                             pax->didstats = 1;
1293                         //if ( strcmp(CURRENCIES[baseids[i]],ASSETCHAINS_SYMBOL) == 0 )
1294                         //printf(" i.%d approved.%d <<<<<<<<<<<<< APPROVED %p\n",i,kmdheights[i],pax);
1295                     }
1296                 }
1297             }
1298         } //else printf("n.%d from opreturns\n",n);
1299         //printf("extra.[%d] after %.8f\n",n,dstr(komodo_paxtotal()));
1300     }
1301     else if ( height < 236000 && opretbuf[0] == 'X' && ASSETCHAINS_SYMBOL[0] == 0 )
1302     {
1303         tokomodo = 1;
1304         if ( (n= komodo_issued_opreturn(base,txids,vouts,values,srcvalues,kmdheights,otherheights,baseids,rmd160s,opretbuf,opretlen,1)) > 0 )
1305         {
1306             for (i=0; i<n; i++)
1307             {
1308                 if ( baseids[i] < 0 )
1309                     continue;
1310                 bitcoin_address(coinaddr,60,&rmd160s[i*20],20);
1311                 komodo_gateway_deposit(coinaddr,0,0,0,0,txids[i],vouts[i],'X',height,0,(char *)"KMD",0);
1312                 komodo_paxmark(height,txids[i],vouts[i],'W',height);
1313                 komodo_paxmark(height,txids[i],vouts[i],'A',height);
1314                 komodo_paxmark(height,txids[i],vouts[i],'X',height);
1315                 if ( (pax= komodo_paxfind(txids[i],vouts[i],'X')) != 0 )
1316                 {
1317                     pax->type = opretbuf[0];
1318                     if ( height < 121842 ) // fields got switched around due to legacy issues and approves
1319                         value = srcvalues[i];
1320                     else value = values[i];
1321                     if ( baseids[i] >= 0 && value != 0 && (basesp= komodo_stateptrget(CURRENCIES[baseids[i]])) != 0 )
1322                     {
1323                         basesp->redeemed += value;
1324                         pax->didstats = 1;
1325                         if ( strcmp(CURRENCIES[baseids[i]],ASSETCHAINS_SYMBOL) == 0 )
1326                             printf("ht.%d %.8f ########### %p redeemed %s += %.8f %.8f kht.%d ht.%d\n",height,dstr(value),basesp,CURRENCIES[baseids[i]],dstr(value),dstr(srcvalues[i]),kmdheights[i],otherheights[i]);
1327                     }
1328                 }
1329                 if ( (pax= komodo_paxmark(height,txids[i],vouts[i],'W',height)) != 0 )
1330                     komodo_paxdelete(pax);
1331                 if ( (pax= komodo_paxmark(height,txids[i],vouts[i],'A',height)) != 0 )
1332                     komodo_paxdelete(pax);
1333                 if ( (pax= komodo_paxmark(height,txids[i],vouts[i],'X',height)) != 0 )
1334                     komodo_paxdelete(pax);
1335             }
1336         } //else printf("komodo_issued_opreturn returned %d\n",n);
1337     }
1338     return(typestr);
1339 }
1340
1341 void komodo_passport_iteration()
1342 {
1343     static long lastpos[34]; static char userpass[33][1024]; static uint32_t lasttime;
1344     int32_t maxseconds = 10;
1345     FILE *fp; int32_t baseid,n,ht,isrealtime,expired,refid,blocks,longest; struct komodo_state *sp,*refsp; char *retstr,fname[512],*base,symbol[16],dest[16]; uint32_t buf[3],starttime; cJSON *infoobj,*result; uint64_t RTmask = 0;
1346     //printf("PASSPORT.(%s)\n",ASSETCHAINS_SYMBOL);
1347     expired = 0;
1348     while ( KOMODO_INITDONE == 0 )
1349     {
1350         fprintf(stderr,"[%s] PASSPORT iteration waiting for KOMODO_INITDONE\n",ASSETCHAINS_SYMBOL);
1351         sleep(3);
1352     }
1353     refsp = komodo_stateptr(symbol,dest);
1354     if ( ASSETCHAINS_SYMBOL[0] == 0 )
1355         refid = 33;
1356     else
1357     {
1358         refid = komodo_baseid(ASSETCHAINS_SYMBOL)+1; // illegal base -> baseid.-1 -> 0
1359         if ( refid == 0 )
1360         {
1361             KOMODO_PASSPORT_INITDONE = 1;
1362             return;
1363         }
1364     }
1365     /*if ( KOMODO_PAX == 0 )
1366     {
1367         KOMODO_PASSPORT_INITDONE = 1;
1368         return;
1369     }*/
1370     starttime = (uint32_t)time(NULL);
1371     if ( starttime == lasttime )
1372     {
1373         usleep(1000);
1374         return;
1375     }
1376     lasttime = starttime;
1377     //printf("PASSPORT %s refid.%d\n",ASSETCHAINS_SYMBOL,refid);
1378     for (baseid=32; baseid>=0; baseid--)
1379     {
1380         if ( time(NULL) >= starttime+maxseconds )
1381             break;
1382         sp = 0;
1383         isrealtime = 0;
1384         base = (char *)CURRENCIES[baseid];
1385         if ( baseid+1 != refid )
1386         {
1387             if ( baseid == 32 || ASSETCHAINS_SYMBOL[0] == 0 )
1388             {
1389                 komodo_statefname(fname,baseid<32?base:(char *)"",(char *)"komodostate");
1390                 komodo_nameset(symbol,dest,base);
1391                 sp = komodo_stateptrget(symbol);
1392                 n = 0;
1393                 if ( (fp= fopen(fname,"rb")) != 0 && sp != 0 )
1394                 {
1395                     fseek(fp,0,SEEK_END);
1396                     if ( ftell(fp) > lastpos[baseid] )
1397                     {
1398                         if ( ASSETCHAINS_SYMBOL[0] != 0 )
1399                             printf("%s passport refid.%d %s fname.(%s) base.%s %ld %ld\n",ASSETCHAINS_SYMBOL,refid,symbol,fname,base,ftell(fp),lastpos[baseid]);
1400                         fseek(fp,lastpos[baseid],SEEK_SET);
1401                         while ( komodo_parsestatefile(sp,fp,symbol,dest) >= 0 && n < 1000 )
1402                         {
1403                             if ( n == 999 )
1404                             {
1405                                 if ( time(NULL) < starttime+maxseconds )
1406                                     n = 0;
1407                                 else
1408                                 {
1409                                     //printf("expire passport loop %s -> %s at %ld\n",ASSETCHAINS_SYMBOL,base,lastpos[baseid]);
1410                                     expired++;
1411                                 }
1412                             }
1413                             n++;
1414                         }
1415                         lastpos[baseid] = ftell(fp);
1416                         if ( lastpos[baseid] == 0 && strcmp(symbol,"KMD") == 0 )
1417                             printf("from.(%s) lastpos[%s] %ld isrt.%d\n",ASSETCHAINS_SYMBOL,CURRENCIES[baseid],lastpos[baseid],komodo_isrealtime(&ht));
1418                     } //else fprintf(stderr,"%s.%ld ",CURRENCIES[baseid],ftell(fp));
1419                     fclose(fp);
1420                 } else printf("error.(%s) %p\n",fname,sp);
1421                 komodo_statefname(fname,baseid<32?base:(char *)"",(char *)"realtime");
1422                 if ( (fp= fopen(fname,"rb")) != 0 )
1423                 {
1424                     if ( fread(buf,1,sizeof(buf),fp) == sizeof(buf) )
1425                     {
1426                         sp->CURRENT_HEIGHT = buf[0];
1427                         if ( buf[0] != 0 && buf[0] >= buf[1] && buf[2] > time(NULL)-300 )
1428                         {
1429                             isrealtime = 1;
1430                             RTmask |= (1LL << baseid);
1431                             memcpy(refsp->RTbufs[baseid+1],buf,sizeof(refsp->RTbufs[baseid+1]));
1432                         } else if ( KOMODO_PAX != 0 && (time(NULL)-buf[2]) > 1800 && ASSETCHAINS_SYMBOL[0] != 0 )
1433                             fprintf(stderr,"[%s]: %s not RT %u %u %d\n",ASSETCHAINS_SYMBOL,base,buf[0],buf[1],(int32_t)(time(NULL)-buf[2]));
1434                     } //else fprintf(stderr,"%s size error RT\n",base);
1435                     fclose(fp);
1436                 } //else fprintf(stderr,"%s open error RT\n",base);
1437             }
1438         }
1439         else
1440         {
1441             komodo_statefname(fname,baseid<32?base:(char *)"",(char *)"realtime");
1442             if ( (fp= fopen(fname,"wb")) != 0 )
1443             {
1444                 buf[0] = (uint32_t)chainActive.Tip()->nHeight;
1445                 buf[1] = (uint32_t)komodo_longestchain();
1446                 if ( buf[0] != 0 && buf[0] == buf[1] )
1447                 {
1448                     buf[2] = (uint32_t)time(NULL);
1449                     RTmask |= (1LL << baseid);
1450                     memcpy(refsp->RTbufs[baseid+1],buf,sizeof(refsp->RTbufs[baseid+1]));
1451                     if ( refid != 0 )
1452                         memcpy(refsp->RTbufs[0],buf,sizeof(refsp->RTbufs[0]));
1453                 }
1454                 if ( fwrite(buf,1,sizeof(buf),fp) != sizeof(buf) )
1455                     fprintf(stderr,"[%s] %s error writing realtime\n",ASSETCHAINS_SYMBOL,base);
1456                 fclose(fp);
1457             } else fprintf(stderr,"%s create error RT\n",base);
1458         }
1459         if ( sp != 0 && isrealtime == 0 )
1460             refsp->RTbufs[0][2] = 0;
1461     }
1462     komodo_paxtotal();
1463     refsp->RTmask = RTmask;
1464     if ( expired == 0 && KOMODO_PASSPORT_INITDONE == 0 )
1465     {
1466         KOMODO_PASSPORT_INITDONE = 1;
1467         printf("done PASSPORT %s refid.%d\n",ASSETCHAINS_SYMBOL,refid);
1468     }
1469 }
1470
This page took 0.111935 seconds and 4 git commands to generate.