diff --git a/iguana/exchanges/LP_nativeDEX.c b/iguana/exchanges/LP_nativeDEX.c index 34b5c1c6b..f1789181e 100644 --- a/iguana/exchanges/LP_nativeDEX.c +++ b/iguana/exchanges/LP_nativeDEX.c @@ -973,14 +973,14 @@ void verusblocks(struct iguana_info *coin,char *coinaddr) if ( posflag != 0 ) { numpos++; - printf("ht.%d lock.%d PoS coinbase.(%s) staked.(%s) %.8f\n",height,locked,addr0,stakingaddr,value); + printf("ht.%-7d lock.%d PoS coinbase.(%s) staked.(%s) %.8f\n",height,locked,addr0,stakingaddr,value); if ( strcmp(coinaddr,stakingaddr) == 0 ) possum += value, npos++; } else { numpow++; - printf("ht.%d lock.%d PoW coinbase.(%s) %.8f\n",height,locked,addr0,value); + printf("ht.%-7d lock.%d PoW coinbase.(%s) %.8f\n",height,locked,addr0,value); if ( strcmp(coinaddr,addr0) == 0 ) powsum += value, npow++; }