Lets always use $this->table instead of hardcoding

This commit is contained in:
Andrea Baccega 2014-01-23 12:56:19 +01:00
parent 6b52d47ab2
commit d6670508f7

View File

@ -295,7 +295,7 @@ class Transaction extends Base {
), 8
), 0
) AS confirmed
FROM transactions AS t
FROM $this->table AS t
LEFT JOIN blocks AS b
ON t.block_id = b.id
LEFT JOIN accounts AS a