Update files to use class constructor parentheses

This commit is contained in:
pxgamer
2018-05-29 15:50:30 +01:00
parent c6393d7e8d
commit 2f4e95f22d
8 changed files with 201 additions and 130 deletions

View File

@@ -145,7 +145,7 @@ class Account
public function get_transactions($id, $limit = 100)
{
global $db;
$block = new Block;
$block = new Block();
$current = $block->current();
$public_key = $this->public_key($id);
$limit = intval($limit);