diff --git a/public/include/classes/transaction.class.php b/public/include/classes/transaction.class.php index a8e77d1b..0dad5fe6 100644 --- a/public/include/classes/transaction.class.php +++ b/public/include/classes/transaction.class.php @@ -36,8 +36,6 @@ class Transaction extends Base { public function setArchived($account_id, $txid) { $stmt = $this->mysqli->prepare(" UPDATE $this->table AS t - LEFT JOIN " . $this->block->getTableName() . " AS b - ON b.id = t.block_id SET t.archived = 1 WHERE archived = 0 AND t.account_id = ? AND t.id <= ? ");