dexter369
Results
4
comments of
dexter369
It is because of the way nonce is calculated, the api cannot make more than one call per second. The api is already making a call in constructor to get...
Yes replace __construct there with above.
simply replace the whole thing you pasted above with: ``` public function __construct($priv, $pub) { $this->privateKey = $priv; $this->publicKey = $pub; } ``` you dont lose anything by deleting unnecessary...