Merge pull request #1548 from vekexasia/patch-2

Lets always use $this->table instead of hardcoding
This commit is contained in:
Sebastian Grewe 2014-01-23 07:54:41 -08:00
commit fc67e0eb3d

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