This commit is contained in:
jl777
2016-10-22 13:35:17 -03:00
parent 17878015bb
commit 7652ed92bd
3 changed files with 19 additions and 2 deletions

View File

@@ -678,5 +678,12 @@ void komodo_index2pubkey33(uint8_t *pubkey33,CBlockIndex *pindex,int32_t height)
}
}
int32_t komodo_opreturn(uint8_t *opret,int32_t maxsize)
{
int32_t i;
for (i=0; i<8; i++)
opret[i] = i;
return(i);
}
#endif