From 8634b09a2ec23e44466b06db1766dc06a13bc5df Mon Sep 17 00:00:00 2001 From: jl777 Date: Fri, 7 Oct 2016 14:40:35 -0300 Subject: [PATCH] test --- iguana/iguana_notary.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iguana/iguana_notary.c b/iguana/iguana_notary.c index 44f6b0f7c..cdb91fa45 100755 --- a/iguana/iguana_notary.c +++ b/iguana/iguana_notary.c @@ -727,9 +727,9 @@ void dpow_fifoupdate(struct supernet_info *myinfo,struct dpow_checkpoint *fifo,s { if ( (offset= (tip.blockhash.height - fifo[i].blockhash.height)) >= 0 && offset < DPOW_FIFOSIZE ) { - printf("[offset %d = (%d - %d)] <- i.%d\n",offset,tip.blockhash.height,fifo[i].blockhash.height,i); newfifo[offset] = fifo[i]; } + printf("[offset %d = (%d - %d)] <- i.%d\n",offset,tip.blockhash.height,fifo[i].blockhash.height,i); } newfifo[0] = tip; memcpy(fifo,newfifo,sizeof(newfifo));