Documentation ¶
Overview ¶
Package txrules provides transaction rules that should be followed by transaction authors for wide mempool acceptance and quick mining.
Index ¶
- Constants
- Variables
- func CheckOutput(output *wire.TxOut, relayFeePerKb dcrutil.Amount) error
- func FeeForSerializeSize(relayFeePerKb dcrutil.Amount, txSerializeSize int) dcrutil.Amount
- func IsDustAmount(amount dcrutil.Amount, scriptSize int, relayFeePerKb dcrutil.Amount) bool
- func IsDustOutput(output *wire.TxOut, relayFeePerKb dcrutil.Amount) bool
Constants ¶
View Source
const DefaultRelayFeePerKb dcrutil.Amount = 1e6
DefaultRelayFeePerKb is the default minimum relay fee policy for a mempool.
Variables ¶
View Source
var ( ErrAmountNegative = errors.New("transaction output amount is negative") ErrAmountExceedsMax = errors.New("transaction output amount exceeds maximum value") ErrOutputIsDust = errors.New("transaction output is dust") )
Transaction rule violations
Functions ¶
func CheckOutput ¶
CheckOutput performs simple consensus and policy tests on a transaction output.
func FeeForSerializeSize ¶
FeeForSerializeSize calculates the required fee for a transaction of some arbitrary size given a mempool's relay fee policy.
func IsDustAmount ¶
IsDustAmount determines whether a transaction output value and script length would cause the output to be considered dust. Transactions with dust outputs are not standard and are rejected by mempools with default policies.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.