Esempio n. 1
0
 /**
  * Signs an Authorization for the given issuer with the currency's key
  *
  * @param Binary $currencyKey
  * @param Binary $issuerAddress
  * @return Authorization
  */
 public function authorizeIssuer(Binary $currencyKey, Binary $issuerAddress)
 {
     return Authorization::signed($issuerAddress, new Signer($this->key, $currencyKey));
 }