Completed
Pull Request — master (#3)
by thomas
25:38
created
src/Notification/MiningNotification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,6 +154,6 @@
 block discarded – undo
154 154
      */
155 155
     public function toRequest()
156 156
     {
157
-        return new Request(null, MiningClient::MINING_SUBSCRIBE, [$this->job_id, $this->prevhash, $this->coinb1, $this->coinb2, $this->merkle_branch, $this->version, $this->nbits, $this->ntime, $this->clean_jobs]);
157
+        return new Request(null, MiningClient::MINING_SUBSCRIBE, [ $this->job_id, $this->prevhash, $this->coinb1, $this->coinb2, $this->merkle_branch, $this->version, $this->nbits, $this->ntime, $this->clean_jobs ]);
158 158
     }
159 159
 }
Please login to merge, or discard this patch.
src/Notification/SetDifficultyNotification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,6 +34,6 @@
 block discarded – undo
34 34
      */
35 35
     public function toRequest()
36 36
     {
37
-        return new Request(null, MiningClient::SET_DIFFICULTY, [$this->difficulty]);
37
+        return new Request(null, MiningClient::SET_DIFFICULTY, [ $this->difficulty ]);
38 38
     }
39 39
 }
Please login to merge, or discard this patch.