Пример #1
0
 /**
  * @return $this
  */
 private function initConfig()
 {
     if (null === $this->config) {
         $file = getenv('HOME') . '/.bitcoinphp/bitcoin.ini';
         $this->config = new IniConfigProvider();
         $this->config->loadFile($file);
     }
     return $this;
 }