Example #1
0
 /**
  * Get locked balance (the current amount of unavailable funds)
  * 
  * @return  decimal     locked balance in XMR 
  */
 public function get_locked_balance()
 {
     $result = $this->_get_balances();
     return bc::div(bc::op($result['balance'], '-', $result['unlocked_balance']), $this->multiplier);
 }