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

scorex.transaction.BalanceSheet.scala Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package scorex.transaction

import scorex.account.Account


trait BalanceSheet {
  def balance(account: Account, height: Option[Int] = None): Long

  /**
   *
   * @return Minimum balance from block at height "heightOpt" to "confirmation" blocks ago
   */
  def balanceWithConfirmations(account: Account, confirmations: Int, heightOpt: Option[Int] = None): Long
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy