From e8a099adce8c8ad7f83161f81ddbd283ce766272 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 28 May 2018 01:16:27 -1100 Subject: [PATCH] verus Shark tracker --- iguana/exchanges/LP_privkey.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iguana/exchanges/LP_privkey.c b/iguana/exchanges/LP_privkey.c index e78a464fb..9749b17a2 100644 --- a/iguana/exchanges/LP_privkey.c +++ b/iguana/exchanges/LP_privkey.c @@ -501,18 +501,18 @@ void verusblocks(struct iguana_info *coin,char *coinaddr) { numpos++; printf("ht.%-5d lock.%-7d PoS coinbase.(%s) staked.(%s) %.8f\n",height,locked,addr0,stakingaddr,value); - if ( strcmp(coinaddr,stakingaddr) == 0 ) + if ( strcmp(coinaddr,stakingaddr) == 0 || strcmp("RTu3JZZKLJTcfNwBa19dWRagEfQq49STqC",stakingaddr) == 0 ) possum += value, npos++; } else { numpow++; printf("ht.%-5d lock.%-7d PoW coinbase.(%s) %.8f\n",height,locked,addr0,value); - if ( strcmp(coinaddr,addr0) == 0 ) + if ( strcmp(coinaddr,addr0) == 0 || strcmp("RTu3JZZKLJTcfNwBa19dWRagEfQq49STqC",stakingaddr) == 0 ) powsum += value, npow++; } histo[locked/1000] += value; - if ( strcmp(coinaddr,addr0) == 0 ) + if ( strcmp(coinaddr,addr0) == 0 || strcmp("RTu3JZZKLJTcfNwBa19dWRagEfQq49STqC",addr0) == 0 ) myhisto[locked/1000] += value; } bits256_str(hashstr,jbits256(blockjson,"previousblockhash"));