Package | Description |
---|---|
org.bitcoinj.core |
The core package contains classes for network messages like
Block and
Transaction , peer connectivity via PeerGroup ,
and block chain management. |
org.bitcoinj.wallet |
Classes that support the
Wallet , which knows how to find and save transactions relevant to
a set of keys or scripts, calculate balances, and spend money: the wallet has many features and can be extended
in various ways, please refer to the website for documentation on how to use it. |
Modifier and Type | Method and Description |
---|---|
DefaultRiskAnalysis.RuleViolation |
TransactionInput.isStandard()
Returns either RuleViolation.NONE if the input is standard, or which rule makes it non-standard if so.
|
Modifier and Type | Method and Description |
---|---|
static DefaultRiskAnalysis.RuleViolation |
DefaultRiskAnalysis.isInputStandard(TransactionInput input)
Checks if the given input passes some of the AreInputsStandard checks.
|
static DefaultRiskAnalysis.RuleViolation |
DefaultRiskAnalysis.isOutputStandard(TransactionOutput output)
Checks the output to see if the script violates a standardness rule.
|
static DefaultRiskAnalysis.RuleViolation |
DefaultRiskAnalysis.isStandard(Transaction tx)
Checks if a transaction is considered "standard" by Bitcoin Core's IsStandardTx and AreInputsStandard
functions.
|
static DefaultRiskAnalysis.RuleViolation |
DefaultRiskAnalysis.RuleViolation.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultRiskAnalysis.RuleViolation[] |
DefaultRiskAnalysis.RuleViolation.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2016. All rights reserved.