/**
  * Returns a list of all the parameters of this blockchain, reflecting the content of its params.dat file.
  *
  * @group info
  */
 public function testGetBlockchainParams()
 {
     $this->multichain->setDebug(true)->getBlockchainParams();
 }
 /**
  * Sets the debug flag on the Multichain library when running in verbose mode
  *
  * @param OutputInterface $output
  */
 protected function multichainDebug(OutputInterface $output)
 {
     $this->multichain->setDebug($output->getVerbosity() > OutputInterface::VERBOSITY_NORMAL);
 }