From 83ee00259f3dd5981016d12a88506ee737c6dbd9 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Sat, 2 Nov 2013 18:57:15 +0100 Subject: [PATCH] [FIX] Fixed typo in cron logs --- public/include/classes/share.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/include/classes/share.class.php b/public/include/classes/share.class.php index 7b31e1a0..592e1851 100644 --- a/public/include/classes/share.class.php +++ b/public/include/classes/share.class.php @@ -276,7 +276,7 @@ class Share Extends Base { $stmt = $this->mysqli->prepare("SELECT SUBSTRING_INDEX( `username` , '.', 1 ) AS account, id FROM $this->table WHERE solution = ? LIMIT 1"); if ($this->checkStmt($stmt) && $stmt->bind_param('s', $aBlock['hash']) && $stmt->execute() && $result = $stmt->get_result()) { $this->oUpstream = $result->fetch_object(); - $this->share_type = 'startum_blockhash'; + $this->share_type = 'stratum_blockhash'; if (!empty($this->oUpstream->account) && is_int($this->oUpstream->id)) return true; } @@ -286,7 +286,7 @@ class Share Extends Base { $stmt = $this->mysqli->prepare("SELECT SUBSTRING_INDEX( `username` , '.', 1 ) AS account, id FROM $this->table WHERE solution = ? LIMIT 1"); if ($this->checkStmt($stmt) && $stmt->bind_param('s', $scrypt_hash) && $stmt->execute() && $result = $stmt->get_result()) { $this->oUpstream = $result->fetch_object(); - $this->share_type = 'startum_solution'; + $this->share_type = 'stratum_solution'; if (!empty($this->oUpstream->account) && is_int($this->oUpstream->id)) return true; }