From fea26cfb89e933ec3e8142b9742c8150d5a26b64 Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Mon, 30 Mar 2015 12:33:42 -0700 Subject: [PATCH] updated minimum for reference node --- src/masternode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/masternode.cpp b/src/masternode.cpp index eeff2f1d1..36b243ff5 100644 --- a/src/masternode.cpp +++ b/src/masternode.cpp @@ -436,7 +436,7 @@ bool CMasternodePayments::ProcessBlock(int nBlockHeight) } // pay to the oldest MN that still had no payment but its input is old enough and it was active long enough - CMasternode *pmn = mnodeman.FindOldestNotInVec(vecLastPayments, nMinimumAge, nMinimumAge * 2.5 * 60); + CMasternode *pmn = mnodeman.FindOldestNotInVec(vecLastPayments, nMinimumAge, 0); if(pmn != NULL) { newWinner.score = 0;