]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/miner/booting/class_MinerBootingState.php
Fixed a lot stuff for cruncher (missing methods, etc.)
[hub.git] / application / hub / main / states / miner / booting / class_MinerBootingState.php
index 5a29b1539e6637e7cdb23396c23f6ef77d7a6cce..476cd4968b9d2feaa4a4dc9d13fdab3885392ed7 100644 (file)
@@ -38,19 +38,15 @@ class MinerBootingState extends BaseMinerState implements Stateable {
        /**
         * Creates an instance of this class
         *
-        * @param       $minerInstance  An instance of a MinerHelper class
         * @return      $stateInstance  An instance of a Stateable class
         */
-       public final static function createMinerBootingState (MinerHelper $minerInstance) {
+       public final static function createMinerBootingState () {
                // Get new instance
                $stateInstance = new MinerBootingState();
 
                // Debug message
                //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('MINER-STATE: Has changed from ' . $minerInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
 
-               // Set the miner instance
-               $stateInstance->setMinerInstance($minerInstance);
-
                // Return the prepared instance
                return $stateInstance;
        }