This commit is contained in:
jl777
2016-10-18 19:01:38 -03:00
parent 651989c73c
commit 0cb232fa89
2 changed files with 2 additions and 2 deletions

View File

@@ -178,7 +178,7 @@ const char *Notaries[64][2] =
int32_t IS_KOMODO_NOTARY,USE_EXTERNAL_PUBKEY,NOTARIZED_HEIGHT;
std::string NOTARY_PUBKEY;
uint256 NOTARIZED_HASH;
char *komodo_gettxout(bits256 hash,int32_t n);
char *komodo_gettxout(uint256 hash,int32_t n);
int32_t komodo_blockindexcheck(CBlockIndex *pindex,uint32_t *nBitsp)
{

View File

@@ -460,7 +460,7 @@ Value gettxout(const Array& params, bool fHelp)
return ret;
}
char *komodo_gettxout(bits256 hash,int32_t n)
char *komodo_gettxout(uint256 hash,int32_t n)
{
CCoins coins; CBlockIndex *pindex;
if ( pcoinsTip->GetCoins(hash,coins) == 0 )