Packages

sealed abstract class Policy extends AnyRef

Created by chris on 4/6/16. Mimics the policy files found in Bitcoin Core

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Policy
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def confirmations: Long

    The number of confirmations for a payment to be considered as accepted

  7. def defaultFee: CurrencyUnit

    A default fee to use per byte on the bitcoin network

  8. def defaultFeeRate: FeeUnit

    A default fee to use per byte on the bitcoin network

  9. def dustThreshold: CurrencyUnit

    The minimum amount of satoshis we can spend to an output

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def mandatoryScriptVerifyFlags: Seq[ScriptFlag]

    Mandatory script verification flags that all new blocks must comply with for them to be valid.

    Mandatory script verification flags that all new blocks must comply with for them to be valid. (but old blocks may not comply with) Currently just P2SH, but in the future other flags may be added, such as a soft-fork to enforce strict DER encoding.

    Failing one of these tests may trigger a DoS ban - see CheckInputs() for details.

  17. def maxFee: CurrencyUnit

    Max fee for a transaction is set to 10 mBTC right now

  18. def minChannelAmount: CurrencyUnit

    Minimum amount of CurrencyUnit lock in a Channel Currently set to 1 mBTC

    Minimum amount of CurrencyUnit lock in a Channel Currently set to 1 mBTC

    TODO: Remove this?

  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. def sequence: UInt32
  23. def standardFlags: Seq[ScriptFlag]
  24. def standardScriptVerifyFlags: Seq[ScriptFlag]

    The default script verify flags used to validate the blockchain and bitcoin transactions

  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped