@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | * @param $address |
| 121 | 121 | * @return mixed |
| 122 | 122 | */ |
| 123 | - public function dumpPrivateKey($address){ |
|
| 123 | + public function dumpPrivateKey($address) { |
|
| 124 | 124 | return $this->jsonRPCClient->execute("dumpprivkey", array($address)); |
| 125 | 125 | } |
| 126 | 126 | |
@@ -410,7 +410,7 @@ discard block |
||
| 410 | 410 | * @param bool $open |
| 411 | 411 | * @return mixed |
| 412 | 412 | */ |
| 413 | - public function issue($address, $name, $qty, $units = 1, $nativeAmount = 0, $custom = null, $open=false) |
|
| 413 | + public function issue($address, $name, $qty, $units = 1, $nativeAmount = 0, $custom = null, $open = false) |
|
| 414 | 414 | { |
| 415 | 415 | $params = array($address, array('name'=>$name, 'open'=>$open), $qty, $units, $nativeAmount); |
| 416 | 416 | if (!is_null($custom)) { |
@@ -433,7 +433,7 @@ discard block |
||
| 433 | 433 | * @param null $custom |
| 434 | 434 | * @return mixed |
| 435 | 435 | */ |
| 436 | - public function issueMore($address, $asset, $qty, $nativeAmount=0, $custom = null){ |
|
| 436 | + public function issueMore($address, $asset, $qty, $nativeAmount = 0, $custom = null) { |
|
| 437 | 437 | $params = array($address, $asset, $qty, $nativeAmount); |
| 438 | 438 | if (!is_null($custom)) { |
| 439 | 439 | $params[] = $custom; |