From 1b03a3a29244911babe5f5afb1139dc58ba3b0cc Mon Sep 17 00:00:00 2001 From: Arionum Date: Thu, 22 Feb 2018 20:27:44 +0200 Subject: [PATCH] limit transaction dates --- include/transaction.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/transaction.inc.php b/include/transaction.inc.php index b75e9d5..1622ee7 100755 --- a/include/transaction.inc.php +++ b/include/transaction.inc.php @@ -162,7 +162,7 @@ class Transaction { // no future transactions if($x['date']>time()+86400) { _log("$x[id] - Date in the future"); return false; } // prevent the resending of broken base58 transactions - if($height>17000&&$x['date']<1519319340) return false; + if($height>16890&&$x['date']<1519323683) return false; $id=$this->hash($x); // the hash does not match our regenerated hash if($x['id']!=$id) {