This commit is contained in:
jl777
2016-11-06 21:00:20 -03:00
parent 51508fedbd
commit 52bc445a1f
2 changed files with 3 additions and 3 deletions

View File

@@ -153,7 +153,7 @@ void komodo_gateway_deposits(CMutableTransaction *txNew,int32_t shortflag,char *
opcode = 'I';
else opcode = 'X';
tmp = 0;
while ( (pax= PAX->hh.next) != 0 && pax != tmp )
while ( (pax= (struct pax_transaction *)PAX->hh.next) != 0 && pax != tmp )
{
if ( pax->marked != 0 )
continue;
@@ -181,7 +181,7 @@ void komodo_gateway_deposits(CMutableTransaction *txNew,int32_t shortflag,char *
if ( numvouts++ >= 64 )
break;
tmp = pax;
pax = pax->hh.next;
pax = (struct pax_transaction *)pax->hh.next;
}
if ( numvouts > 1 )
{