示例#1
0
 /**
  * DbUtxo constructor.
  * @param int $id
  * @param OutPointInterface $outPoint
  * @param TransactionOutputInterface $prevOut
  */
 public function __construct($id, OutPointInterface $outPoint, TransactionOutputInterface $prevOut)
 {
     $this->id = $id;
     parent::__construct($outPoint, $prevOut);
 }