bllm
Class Transaction
- java.lang.Object
-
- bllm.Transaction
-
public class Transaction extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field and Description TransactionObject.Output[]
outputs
-
Constructor Summary
Constructors Constructor and Description Transaction(java.lang.String transactionID, java.lang.String merchantWalletID, java.lang.String unitsOfRequestedPayment)
Create a LiteCoin Transaction Object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description long
getDeltaTime()
Time in hours between now and transaction executionboolean
getDoubleSpend()
long
getNumberOfConfirmations()
long
getPaymentInSatoshis()
java.time.LocalDate
getTransactionDate()
boolean
getWalletIDnotFound()
-
-
-
Field Detail
-
outputs
public TransactionObject.Output[] outputs
-
-
Constructor Detail
-
Transaction
public Transaction(java.lang.String transactionID, java.lang.String merchantWalletID, java.lang.String unitsOfRequestedPayment)
Create a LiteCoin Transaction Object. This object will provide access to transaction parameters, which will be used to validate the license. The lto provides the transaction value in Satoshis, which are converted to Bitcoin by dividing by 1e8. a transaction: https://api.blockcypher.com/v1/ltc/main/txs/9e9c462b755defda988e9950b9797cecd055a017d32d9c6feff89ebdea5fe3cd my wallet: LMGaFd8tmxJSDbo3GLZFJaPd1kNJ9r1v48
-
-
Method Detail
-
getNumberOfConfirmations
public long getNumberOfConfirmations()
-
getDoubleSpend
public boolean getDoubleSpend()
-
getTransactionDate
public java.time.LocalDate getTransactionDate()
-
getPaymentInSatoshis
public long getPaymentInSatoshis()
-
getDeltaTime
public long getDeltaTime()
Time in hours between now and transaction execution
-
getWalletIDnotFound
public boolean getWalletIDnotFound()
-
-