示例#1
0
 /**
  * @param BufferInterface $hash
  * @return BlockInterface
  */
 public function fetch(BufferInterface $hash)
 {
     return $this->db->fetchBlock($hash);
 }
示例#2
0
 /**
  * @param BufferInterface $hash
  * @return \BitWasp\Bitcoin\Block\Block
  */
 public function fetchBlock(BufferInterface $hash)
 {
     echo __FUNCTION__ . PHP_EOL;
     return $this->db->fetchBlock($hash);
 }