All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavesplatform.features.BlockchainFeatureStatus.scala Maven / Gradle / Ivy

The newest version!
package com.wavesplatform.features

sealed trait BlockchainFeatureStatus

object BlockchainFeatureStatus {
  case object Undefined extends BlockchainFeatureStatus
  case object Approved  extends BlockchainFeatureStatus
  case object Activated extends BlockchainFeatureStatus

  def promote(status: BlockchainFeatureStatus): BlockchainFeatureStatus = {
    status match {
      case Undefined => Approved
      case Approved  => Activated
      case Activated => Activated
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy