Passed
Push — master ( 977127...347791 )
by Nathan
01:52
created
src/Native/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             'headers' => [
30 30
                 'Content-Type' => 'text/plain'
31 31
             ],
32
-            'auth' => [$this->rpc->getUser(), $this->rpc->getPassword()],
32
+            'auth' => [ $this->rpc->getUser(), $this->rpc->getPassword() ],
33 33
             'json' => $command
34 34
         ]);
35 35
     }
Please login to merge, or discard this patch.
src/Command/Mining/PrioritiseTransaction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
             'jsonrpc' => Command::JSON_RPC_VERSION,
25 25
             'id'      => Command::ID,
26 26
             'method'  => self::METHOD,
27
-            'params' => [$this->txid, $this->priority, $this->fee]
27
+            'params' => [ $this->txid, $this->priority, $this->fee ]
28 28
         ];
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
src/Command/Mining/SubmitBlock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
             'jsonrpc' => Command::JSON_RPC_VERSION,
21 21
             'id'      => Command::ID,
22 22
             'method'  => self::METHOD,
23
-            'params' => [$this->hexData]
23
+            'params' => [ $this->hexData ]
24 24
         ];
25 25
     }
26 26
 }
Please login to merge, or discard this patch.