Exemplo n.º 1
0
 /**
  * @param BlockInterface $genesisBlock
  */
 public function init(BlockInterface $genesisBlock)
 {
     try {
         $this->db->fetchBlock($genesisBlock->getHeader()->getHash());
     } catch (\Exception $e) {
         $this->db->insertBlockGenesis($genesisBlock);
     }
 }