Calculate MoMoM

This commit is contained in:
jl777
2018-04-12 11:44:28 +03:00
parent 090b1c9fac
commit fb9c365218
8 changed files with 122 additions and 15 deletions

View File

@@ -100,14 +100,15 @@ struct komodo_ccdatapair { int32_t notarization_height; uint32_t MoMoMoffset; };
struct komodo_ccdataMoMoM
{
uint256 MoMoM;
int32_t MoMoMstart,MoMoMend,MoMoMdepth,numpairs,len;
int32_t MoMoMstarti,MoMoMendi,numpairs,len;
struct komodo_ccdatapair *pairs;
};
struct komodo_ccdata
{
struct komodo_ccdata *next,*prev;
struct komodo_ccdataMoM MoMdata;
uint32_t CCid,len;
uint32_t CCid,inMoMoM,len;
char symbol[65];
};