Documentation ¶
Overview ¶
Package wtxmgr provides an implementation of a transaction database handling spend tracking for a decred wallet. Its primary purpose is to save transactions with outputs spendable with wallet keys and transactions that are signed by wallet keys in memory, handle spend tracking for unspent outputs and newly-inserted transactions, and report the spendable balance from each unspent transaction output. It uses walletdb as the backend for storing the serialized transaction objects in buckets.
Transaction outputs which are spendable by wallet keys are called credits (because they credit to a wallet's total spendable balance). Transaction inputs which spend previously-inserted credits are called debits (because they debit from the wallet's spendable balance).
Spend tracking is mostly automatic. When a new transaction is inserted, if it spends from any unspent credits, they are automatically marked spent by the new transaction, and each input which spent a credit is marked as a debit. However, transaction outputs of inserted transactions must manually marked as credits, as this package has no knowledge of wallet keys or addresses, and therefore cannot determine which outputs may be spent.
Details regarding individual transactions and their credits and debits may be queried either by just a transaction hash, or by hash and block. When querying for just a transaction hash, the most recent transaction with a matching hash will be queried. However, because transaction hashes may collide with other transaction hashes, methods to query for specific transactions in the chain (or unmined) are provided as well.
Example (BasicUsage) ¶
// Open the database. db, dbTeardown, err := testDB() defer dbTeardown() if err != nil { fmt.Println(err) return } // Create or open a db namespace for the transaction store. ns, err := db.Namespace([]byte("txstore")) if err != nil { fmt.Println(err) return } // Create (or open) the transaction store in the provided namespace. err = wtxmgr.Create(ns) if err != nil { fmt.Println(err) return } s, err := wtxmgr.Open(ns, &chaincfg.TestNetParams) if err != nil { fmt.Println(err) return } // Insert an unmined transaction that outputs 10 Coin to a wallet address // at output 0. err = s.InsertTx(exampleTxRecordA, nil) if err != nil { fmt.Println(err) return } defaultAccount := uint32(0) err = s.AddCredit(exampleTxRecordA, nil, 0, false, defaultAccount) if err != nil { fmt.Println(err) return } // Insert a second transaction which spends the output, and creates two // outputs. Mark the second one (5 Coin) as wallet change. err = s.InsertTx(exampleTxRecordB, nil) if err != nil { fmt.Println(err) return } err = s.AddCredit(exampleTxRecordB, nil, 1, true, defaultAccount) if err != nil { fmt.Println(err) return } // Mine each transaction in a block at height 100. err = s.InsertTx(exampleTxRecordA, &exampleBlock100) if err != nil { fmt.Println(err) return } err = s.InsertTx(exampleTxRecordB, &exampleBlock100) if err != nil { fmt.Println(err) return } // Print the one confirmation balance. bal, err := s.Balance(1, 100, wtxmgr.BFBalanceSpendable, true, defaultAccount) if err != nil { fmt.Println(err) return } fmt.Println(bal) // Fetch unspent outputs. utxos, err := s.UnspentOutputs() if err != nil { fmt.Println(err) } expectedOutPoint := wire.OutPoint{Hash: exampleTxRecordB.Hash, Index: 1} for _, utxo := range utxos { fmt.Println(utxo.OutPoint == expectedOutPoint) }
Output: 5 Coin true
Index ¶
- Constants
- func Create(namespace walletdb.Namespace) error
- func DisableLog()
- func IsNoExists(err error) bool
- func UseLogger(logger btclog.Logger)
- type Balances
- type BehaviorFlags
- type Block
- type BlockMeta
- type ByOutpoint
- type ByUtxoAmount
- type Credit
- type CreditRecord
- type DatabaseContents
- type DebitRecord
- type Error
- type ErrorCode
- type InputSource
- type MultisigCredit
- type MultisigOut
- type SortableTxRecords
- type Store
- func (s *Store) AccountBalances(syncHeight int32, minConf int32, account uint32) (Balances, error)
- func (s *Store) AddCredit(rec *TxRecord, block *BlockMeta, index uint32, change bool, account uint32) error
- func (s *Store) AddMultisigOut(rec *TxRecord, block *BlockMeta, index uint32) error
- func (s *Store) Balance(minConf, syncHeight int32, balanceType BehaviorFlags, all bool, account uint32) (dcrutil.Amount, error)
- func (s *Store) Close()
- func (s *Store) DatabaseDump(height int32, oldUnminedInputs map[string][]byte) (*DatabaseContents, error)
- func (s *Store) DebugBucketUnspentString(inclUnmined bool) (string, error)
- func (s *Store) DeleteUnspent(utxos []*wire.OutPoint) error
- func (s *Store) ExistsTx(txHash *chainhash.Hash) (bool, error)
- func (s *Store) GetBlockHash(height int32) (chainhash.Hash, error)
- func (s *Store) GetMultisigCredit(op *wire.OutPoint) (*MultisigCredit, error)
- func (s *Store) GetMultisigOutput(op *wire.OutPoint) (*MultisigOut, error)
- func (s *Store) GetTxScript(hash []byte) ([]byte, error)
- func (s *Store) InsertBlock(bm *BlockMeta) error
- func (s *Store) InsertTx(rec *TxRecord, block *BlockMeta) error
- func (s *Store) InsertTxScript(script []byte) error
- func (s *Store) MakeInputSource(account uint32, minConf, syncHeight int32) InputSource
- func (s *Store) PreviousPkScripts(rec *TxRecord, block *Block) ([][]byte, error)
- func (s *Store) PruneUnconfirmed(height int32, stakeDiff int64) error
- func (s *Store) RangeTransactions(begin, end int32, f func([]TxDetails) (bool, error)) error
- func (s *Store) RepairInconsistencies() ([]*wire.OutPoint, error)
- func (s *Store) RepairMinedBalance(curHeight int32) error
- func (s *Store) Rollback(height int32) error
- func (s *Store) SpendMultisigOut(op *wire.OutPoint, spendHash chainhash.Hash, spendIndex uint32) error
- func (s *Store) StoredTxScripts() ([][]byte, error)
- func (s *Store) Tx(txHash *chainhash.Hash) (*wire.MsgTx, error)
- func (s *Store) TxDetails(txHash *chainhash.Hash) (*TxDetails, error)
- func (s *Store) UniqueTxDetails(txHash *chainhash.Hash, block *Block) (*TxDetails, error)
- func (s *Store) UnminedTxHashes() ([]*chainhash.Hash, error)
- func (s *Store) UnminedTxs() ([]*wire.MsgTx, error)
- func (s *Store) UnspentMultisigCredits() ([]*MultisigCredit, error)
- func (s *Store) UnspentMultisigCreditsForAddress(addr dcrutil.Address) ([]*MultisigCredit, error)
- func (s *Store) UnspentOutpoints() ([]*wire.OutPoint, error)
- func (s *Store) UnspentOutputs() ([]*Credit, error)
- func (s *Store) UnspentOutputsForAmount(amt dcrutil.Amount, height int32, minConf int32, all bool, account uint32) ([]*Credit, error)
- func (s *Store) UnspentTickets(syncHeight int32, includeImmature bool) ([]chainhash.Hash, error)
- type TxDetails
- type TxRecord
Examples ¶
Constants ¶
const (
// LatestVersion is the most recent store version.
LatestVersion = 2
)
Database versions. Versions start at 1 and increment for each database change.
Variables ¶
This section is empty.
Functions ¶
func Create ¶
Create creates a new persistent transaction store in the walletdb namespace. Creating the store when one already exists in this namespace will error with ErrAlreadyExists.
func DisableLog ¶
func DisableLog()
DisableLog disables all library log output. Logging output is disabled by default until either UseLogger or SetLogWriter are called.
func IsNoExists ¶
IsNoExists returns whether an error is a Error with the ErrNoExists error code.
Types ¶
type Balances ¶
type Balances struct { Total dcrutil.Amount Spendable dcrutil.Amount ImmatureReward dcrutil.Amount }
Balances records total, spendable (by policy), and immature coinbase reward balance amounts.
type BehaviorFlags ¶
type BehaviorFlags uint32
BehaviorFlags is a bitmask defining tweaks to the normal behavior when performing chain processing and consensus rules checks.
const ( OP_NONSTAKE = txscript.OP_NOP10 BFBalanceAll BehaviorFlags = iota BFBalanceLockedStake BFBalanceSpendable BFBalanceFullScan )
type Block ¶
Block contains the minimum amount of data to uniquely identify any block on either the best or side chain.
type BlockMeta ¶
BlockMeta contains the unique identification for a block and any metadata pertaining to the block. At the moment, this additional metadata only includes the block time from the block header.
type ByOutpoint ¶
type ByOutpoint []*unspentDebugData
ByOutpoint defines the methods needed to satisify sort.Interface to sort a slice of Utxos by their outpoint.
func (ByOutpoint) Len ¶
func (u ByOutpoint) Len() int
func (ByOutpoint) Less ¶
func (u ByOutpoint) Less(i, j int) bool
func (ByOutpoint) Swap ¶
func (u ByOutpoint) Swap(i, j int)
type ByUtxoAmount ¶
type ByUtxoAmount []*minimalCredit
ByUtxoAmount defines the methods needed to satisify sort.Interface to sort a slice of Utxos by their amount.
func (ByUtxoAmount) Len ¶
func (u ByUtxoAmount) Len() int
func (ByUtxoAmount) Less ¶
func (u ByUtxoAmount) Less(i, j int) bool
func (ByUtxoAmount) Swap ¶
func (u ByUtxoAmount) Swap(i, j int)
type Credit ¶
type Credit struct { wire.OutPoint BlockMeta Amount dcrutil.Amount PkScript []byte Received time.Time FromCoinBase bool }
Credit is the type representing a transaction output which was spent or is still spendable by wallet. A UTXO is an unspent Credit, but not all Credits are UTXOs.
type CreditRecord ¶
type CreditRecord struct { Index uint32 Amount dcrutil.Amount Spent bool Change bool OpCode uint8 IsCoinbase bool }
CreditRecord contains metadata regarding a transaction credit for a known transaction. Further details may be looked up by indexing a wire.MsgTx.TxOut with the Index field.
type DatabaseContents ¶
type DatabaseContents struct { MinedBalance dcrutil.Amount OneConfBalance dcrutil.Amount OneConfCalcBalance dcrutil.Amount BucketBlocks map[string][]byte BucketTxRecords map[string][]byte BucketCredits map[string][]byte BucketUnspent map[string][]byte BucketDebits map[string][]byte BucketUnmined map[string][]byte BucketUnminedCredits map[string][]byte BucketUnminedInputs map[string][]byte BucketScripts map[string][]byte BucketMultisig map[string][]byte BucketMultisigUsp map[string][]byte }
DatabaseContents is a struct of maps pointing to the current contents of the database.
func (*DatabaseContents) Equals ¶
func (d1 *DatabaseContents) Equals(d2 *DatabaseContents, skipUnmined bool) (bool, string)
Equals compares two databases and returns a list of incongruencies between them.
type DebitRecord ¶
DebitRecord contains metadata regarding a transaction debit for a known transaction. Further details may be looked up by indexing a wire.MsgTx.TxIn with the Index field.
type Error ¶
type Error struct { Code ErrorCode // Describes the kind of error Desc string // Human readable description of the issue Err error // Underlying error, optional }
Error provides a single type for errors that can happen during Store operation.
type ErrorCode ¶
type ErrorCode uint8
ErrorCode identifies a category of error.
const ( // ErrDatabase indicates an error with the underlying database. When // this error code is set, the Err field of the Error will be // set to the underlying error returned from the database. ErrDatabase ErrorCode = iota // ErrData describes an error where data stored in the transaction // database is incorrect. This may be due to missing values, values of // wrong sizes, or data from different buckets that is inconsistent with // itself. Recovering from an ErrData requires rebuilding all // transaction history or manual database surgery. If the failure was // not due to data corruption, this error category indicates a // programming error in this package. ErrData // ErrInput describes an error where the variables passed into this // function by the caller are obviously incorrect. Examples include // passing transactions which do not serialize, or attempting to insert // a credit at an index for which no transaction output exists. ErrInput // ErrAlreadyExists describes an error where creating the store cannot // continue because a store already exists in the namespace. ErrAlreadyExists // ErrNoExists describes an error where the store cannot be opened due to // it not already existing in the namespace. This error should be // handled by creating a new store. ErrNoExists // ErrValueNoExists describes an error indicating that the value for // a given key does not exist in the database queried. ErrValueNoExists // ErrDoubleSpend indicates that an output was attempted to be spent // twice. ErrDoubleSpend // ErrUnknownVersion describes an error where the store already exists // but the database version is newer than latest version known to this // software. This likely indicates an outdated binary. ErrUnknownVersion // ErrIsClosed indicates that the transaction manager is closed. ErrIsClosed )
These constants are used to identify a specific Error.
type InputSource ¶
type InputSource struct {
// contains filtered or unexported fields
}
InputSource provides a method (SelectInputs) to incrementally select unspent outputs to use as transaction inputs. It represents an open database transaction view, and must be closed with CloseTransaction when input selection is finished.
func (*InputSource) CloseTransaction ¶
func (s *InputSource) CloseTransaction() error
CloseTransaction closes any transaction opened when creating the InputSource. Calling SelectInputs will panic after CloseTransaction has been called.
func (*InputSource) SelectInputs ¶
func (s *InputSource) SelectInputs(target dcrutil.Amount) (dcrutil.Amount, []*wire.TxIn, [][]byte, error)
SelectInputs selects transaction inputs to redeem unspent outputs stored in the database. It may be called multiple times with increasing target amounts to return additional inputs for a higher target amount. It returns the total input amount referenced by the previous transaction outputs, a slice of transaction inputs referencing these outputs, and a slice of previous output scripts from each previous output referenced by the corresponding input.
type MultisigCredit ¶
type MultisigCredit struct { OutPoint *wire.OutPoint ScriptHash [ripemd160.Size]byte MSScript []byte M uint8 N uint8 Amount dcrutil.Amount }
MultisigCredit is a redeemable P2SH multisignature credit.
type MultisigOut ¶
type MultisigOut struct { OutPoint *wire.OutPoint Tree int8 ScriptHash [ripemd160.Size]byte M uint8 N uint8 TxHash chainhash.Hash BlockHash chainhash.Hash BlockHeight uint32 Amount dcrutil.Amount Spent bool SpentBy chainhash.Hash SpentByIndex uint32 }
MultisigOut represents a spendable multisignature outpoint contain a script hash.
type SortableTxRecords ¶
type SortableTxRecords []*TxRecord
SortableTxRecords is a list of transaction records that can be sorted.
func (SortableTxRecords) Len ¶
func (p SortableTxRecords) Len() int
func (SortableTxRecords) Less ¶
func (p SortableTxRecords) Less(i, j int) bool
func (SortableTxRecords) Swap ¶
func (p SortableTxRecords) Swap(i, j int)
type Store ¶
type Store struct { // Event callbacks. These execute in the same goroutine as the wtxmgr // caller. NotifyUnspent func(hash *chainhash.Hash, index uint32) // contains filtered or unexported fields }
Store implements a transaction store for storing and managing wallet transactions.
func Open ¶
func Open(namespace walletdb.Namespace, pruneTickets bool, chainParams *chaincfg.Params, acctLookupFunc func(dcrutil.Address) (uint32, error)) (*Store, error)
Open opens the wallet transaction store from a walletdb namespace. If the store does not exist, ErrNoExist is returned. Existing stores will be upgraded to new database formats as necessary.
func (*Store) AccountBalances ¶
AccountBalances returns a Balances struct for some given account at syncHeight block height with all UTXOs that have minConf many confirms.
func (*Store) AddCredit ¶
func (s *Store) AddCredit(rec *TxRecord, block *BlockMeta, index uint32, change bool, account uint32) error
AddCredit marks a transaction record as containing a transaction output spendable by wallet. The output is added unspent, and is marked spent when a new transaction spending the output is inserted into the store.
TODO(jrick): This should not be necessary. Instead, pass the indexes that are known to contain credits when a transaction or merkleblock is inserted into the store.
func (*Store) AddMultisigOut ¶
AddMultisigOut adds a P2SH multisignature spendable output into the transaction manager. In the event that the output already existed but was not mined, the output is updated so its value reflects the block it was included in.
func (*Store) Balance ¶
func (s *Store) Balance(minConf, syncHeight int32, balanceType BehaviorFlags, all bool, account uint32) (dcrutil.Amount, error)
Balance returns the spendable wallet balance (total value of all unspent transaction outputs) given a minimum of minConf confirmations, calculated at a current chain height of curHeight. Coinbase outputs are only included in the balance if maturity has been reached.
Balance may return unexpected results if syncHeight is lower than the block height of the most recent mined transaction in the store.
Example ¶
This example demonstrates reporting the Store balance given an unmined and mined transaction given 0, 1, and 6 block confirmations.
s, teardown, err := testStore() defer teardown() if err != nil { fmt.Println(err) return } // Prints balances for 0 block confirmations, 1 confirmation, and 6 // confirmations. defaultAccount := uint32(0) printBalances := func(syncHeight int32) { zeroConfBal, err := s.Balance(0, syncHeight, wtxmgr.BFBalanceSpendable, true, defaultAccount) if err != nil { fmt.Println(err) return } oneConfBal, err := s.Balance(1, syncHeight, wtxmgr.BFBalanceSpendable, true, defaultAccount) if err != nil { fmt.Println(err) return } sixConfBal, err := s.Balance(6, syncHeight, wtxmgr.BFBalanceSpendable, true, defaultAccount) if err != nil { fmt.Println(err) return } fmt.Printf("%v, %v, %v\n", zeroConfBal, oneConfBal, sixConfBal) } // Insert a transaction which outputs 10 Coin unmined and mark the output // as a credit. err = s.InsertTx(exampleTxRecordA, nil) if err != nil { fmt.Println(err) return } err = s.AddCredit(exampleTxRecordA, nil, 0, false, defaultAccount) if err != nil { fmt.Println(err) return } printBalances(100) // Mine the transaction in block 100 and print balances again with a // sync height of 100 and 105 blocks. err = s.InsertTx(exampleTxRecordA, &exampleBlock100) if err != nil { fmt.Println(err) return } printBalances(100) printBalances(105)
Output: 10 Coin, 0 Coin, 0 Coin 10 Coin, 10 Coin, 0 Coin 10 Coin, 10 Coin, 10 Coin
func (*Store) Close ¶
func (s *Store) Close()
Close safely closes the transaction manager by waiting for the mutex to unlock and then preventing any new calls to the transaction manager.
func (*Store) DatabaseDump ¶
func (s *Store) DatabaseDump(height int32, oldUnminedInputs map[string][]byte) (*DatabaseContents, error)
DatabaseDump is a testing function for wallet that exports the contents of all databases as a
func (*Store) DebugBucketUnspentString ¶
DebugBucketUnspentString is the exported version of debugBuckedUnspentString It returns string versions of unspent outpoints for debug ussage (with a flag for including unmined txes or not).
func (*Store) DeleteUnspent ¶
DeleteUnspent allows an external caller to delete unspent transaction outputs of its choosing, e.g. if those unspent outpoint transactions are found to not exist in the daemon.
func (*Store) GetBlockHash ¶
GetBlockHash fetches the block hash for the block at the given height, and returns an error if it's missing.
func (*Store) GetMultisigCredit ¶
func (s *Store) GetMultisigCredit(op *wire.OutPoint) (*MultisigCredit, error)
GetMultisigCredit takes an outpoint and returns multisignature credit data stored about it.
func (*Store) GetMultisigOutput ¶
func (s *Store) GetMultisigOutput(op *wire.OutPoint) (*MultisigOut, error)
GetMultisigOutput takes an outpoint and returns multisignature credit data stored about it.
func (*Store) GetTxScript ¶
GetTxScript is the exported version of getTxScript.
func (*Store) InsertBlock ¶
InsertBlock inserts a block into the block database if it doesn't already exist.
func (*Store) InsertTx ¶
InsertTx records a transaction as belonging to a wallet's transaction history. If block is nil, the transaction is considered unspent, and the transaction's index must be unset.
func (*Store) InsertTxScript ¶
InsertTxScript is the exported version of insertTxScript.
func (*Store) MakeInputSource ¶
func (s *Store) MakeInputSource(account uint32, minConf, syncHeight int32) InputSource
MakeInputSource creates an InputSource to redeem unspent outputs from an account. The minConf and syncHeight parameters are used to filter outputs based on some spendable policy.
func (*Store) PreviousPkScripts ¶
PreviousPkScripts returns a slice of previous output scripts for each credit output this transaction record debits from.
func (*Store) PruneUnconfirmed ¶
PruneUnconfirmed prunes old stake tickets that are below the current stake difficulty or any unconfirmed transaction which is expired.
func (*Store) RangeTransactions ¶
RangeTransactions runs the function f on all transaction details between blocks on the best chain over the height range [begin,end]. The special height -1 may be used to also include unmined transactions. If the end height comes before the begin height, blocks are iterated in reverse order and unmined transactions (if any) are processed first.
The function f may return an error which, if non-nil, is propagated to the caller. Additionally, a boolean return value allows exiting the function early without reading any additional transactions early when true.
All calls to f are guaranteed to be passed a slice with more than zero elements. The slice may be reused for multiple blocks, so it is not safe to use it after the loop iteration it was acquired.
func (*Store) RepairInconsistencies ¶
RepairInconsistencies attempts to repair the databases in the event that data has gone missing. This throws very loud errors to the user, because it should ideally never happen and indicates wallet corruption. It returns a list of UTXOs so wallet can further investigate whether or not they exist in daemon and, if they don't, can trigger their deletion.
func (*Store) RepairMinedBalance ¶
RepairMinedBalance allows an external caller to attempt to fix the mined balance with a full scan balance call.
func (*Store) Rollback ¶
Rollback removes all blocks at height onwards, moving any transactions within each block to the unconfirmed pool.
Example ¶
s, teardown, err := testStore() defer teardown() if err != nil { fmt.Println(err) return } // Insert a transaction which outputs 10 Coin in a block at height 100. err = s.InsertTx(exampleTxRecordA, &exampleBlock100) if err != nil { fmt.Println(err) return } // Rollback everything from block 100 onwards. err = s.Rollback(100) if err != nil { fmt.Println(err) return } // Assert that the transaction is now unmined. details, err := s.TxDetails(&exampleTxRecordA.Hash) if err != nil { fmt.Println(err) return } if details == nil { fmt.Println("No details found") return } fmt.Println(details.Block.Height)
Output: -1
func (*Store) SpendMultisigOut ¶
func (s *Store) SpendMultisigOut(op *wire.OutPoint, spendHash chainhash.Hash, spendIndex uint32) error
SpendMultisigOut spends a multisignature output by making it spent in the general bucket and removing it from the unspent bucket.
func (*Store) StoredTxScripts ¶
StoredTxScripts is the exported version of storedTxScripts.
func (*Store) Tx ¶
Tx looks up all the stored wire.MsgTx for a transaction with some hash. In case of a hash collision, the most recent transaction with a matching hash is returned.
Not finding a transaction with this hash is not an error. In this case, a nil TxDetails is returned.
func (*Store) TxDetails ¶
TxDetails looks up all recorded details regarding a transaction with some hash. In case of a hash collision, the most recent transaction with a matching hash is returned.
Not finding a transaction with this hash is not an error. In this case, a nil TxDetails is returned.
func (*Store) UniqueTxDetails ¶
UniqueTxDetails looks up all recorded details for a transaction recorded mined in some particular block, or an unmined transaction if block is nil.
Not finding a transaction with this hash from this block is not an error. In this case, a nil TxDetails is returned.
func (*Store) UnminedTxHashes ¶
UnminedTxHashes returns the hashes of all transactions not known to have been mined in a block.
func (*Store) UnminedTxs ¶
UnminedTxs returns the underlying transactions for all unmined transactions which are not known to have been mined in a block.
func (*Store) UnspentMultisigCredits ¶
func (s *Store) UnspentMultisigCredits() ([]*MultisigCredit, error)
UnspentMultisigCredits returns all unspent multisignature P2SH credits in the wallet.
func (*Store) UnspentMultisigCreditsForAddress ¶
func (s *Store) UnspentMultisigCreditsForAddress( addr dcrutil.Address) ([]*MultisigCredit, error)
UnspentMultisigCreditsForAddress returns all unspent multisignature P2SH credits in the wallet for some specified address.
func (*Store) UnspentOutpoints ¶
UnspentOutpoints returns all unspent received transaction outpoints. The order is undefined.
func (*Store) UnspentOutputs ¶
UnspentOutputs returns all unspent received transaction outputs. The order is undefined.
func (*Store) UnspentOutputsForAmount ¶
func (s *Store) UnspentOutputsForAmount(amt dcrutil.Amount, height int32, minConf int32, all bool, account uint32) ([]*Credit, error)
UnspentOutputsForAmount returns all non-stake outputs that sum up to the amount passed. If not enough funds are found, a nil pointer is returned without error.
type TxDetails ¶
type TxDetails struct { TxRecord Block BlockMeta Credits []CreditRecord Debits []DebitRecord }
TxDetails is intended to provide callers with access to rich details regarding a relevant transaction and which inputs and outputs are credit or debits.
type TxRecord ¶
type TxRecord struct { MsgTx wire.MsgTx Hash chainhash.Hash Received time.Time SerializedTx []byte // Optional: may be nil TxType stake.TxType }
TxRecord represents a transaction managed by the Store.
func NewTxRecord ¶
NewTxRecord creates a new transaction record that may be inserted into the store. It uses memoization to save the transaction hash and the serialized transaction.