コード例 #1
0
ファイル: ChainSegment.php プロジェクト: Bit-Wasp/node-php
 /**
  * @param BlockIndexInterface $index
  */
 public function next(BlockIndexInterface $index)
 {
     if (!$this->index->isNext($index)) {
         throw new \InvalidArgumentException('Provided Index does not elongate this Chain');
     }
     $this->index = $index;
     $this->emit('tip', [$index]);
 }
コード例 #2
0
ファイル: Forks.php プロジェクト: Bit-Wasp/node-php
 /**
  * @param BlockIndexInterface $index
  * @return bool
  */
 public function isNext(BlockIndexInterface $index)
 {
     return $this->index->isNext($index);
 }